mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
9 lines
196 B
JavaScript
9 lines
196 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.end();
|
|
});
|