remove runtime test

This commit is contained in:
Sebastian McKenzie
2015-01-20 02:36:42 +11:00
parent e4523de16d
commit 1859226e76

View File

@@ -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/));
});
});