mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2026-01-25 16:43:02 +00:00
9 lines
208 B
JavaScript
9 lines
208 B
JavaScript
var tape = require("tape");
|
|
|
|
var protobuf = require("..");
|
|
|
|
tape.test("codegen", function(test) {
|
|
test.equal(protobuf.util.codegen.verbose, false, "should not be verbose by default");
|
|
test.end();
|
|
});
|