protobuf.js/tests/lib_codegen.js
2017-01-19 02:19:47 +01:00

10 lines
286 B
JavaScript

var tape = require("tape");
var protobuf = require("..");
tape.test("codegen", function(test) {
test.equal(protobuf.util.codegen.supported, true, "should be supported");
test.equal(protobuf.util.codegen.verbose, false, "should not be verbose by default");
test.end();
});