summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@protobufjs/codegen/tests
diff options
context:
space:
mode:
Diffstat (limited to 'frontend-old/node_modules/@protobufjs/codegen/tests')
-rw-r--r--frontend-old/node_modules/@protobufjs/codegen/tests/index.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/frontend-old/node_modules/@protobufjs/codegen/tests/index.js b/frontend-old/node_modules/@protobufjs/codegen/tests/index.js
deleted file mode 100644
index f3a3db1..0000000
--- a/frontend-old/node_modules/@protobufjs/codegen/tests/index.js
+++ /dev/null
@@ -1,13 +0,0 @@
-var codegen = require("..");
-
-// new require("benchmark").Suite().add("add", function() {
-
-var add = codegen(["a", "b"], "add")
- ("// awesome comment")
- ("return a + b - c + %d", 1)
- ({ c: 1 });
-
-if (add(1, 2) !== 3)
- throw Error("failed");
-
-// }).on("cycle", function(event) { process.stdout.write(String(event.target) + "\n"); }).run();