remove runtime test
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
var runtime = require("../lib/6to5/runtime-generator");
|
||||
var assert = require("assert");
|
||||
|
||||
suite("runtime", function () {
|
||||
test("default", function () {
|
||||
var code = runtime();
|
||||
assert.ok(!!code.match(/to5Runtime/));
|
||||
});
|
||||
|
||||
test("custom", function () {
|
||||
var code = runtime("customNamespace");
|
||||
assert.ok(code.match(/customNamespace/));
|
||||
assert.ok(!code.match(/to5Runtime/));
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user