From 1859226e76582650351b093f696f562af9078c8e Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Tue, 20 Jan 2015 02:36:42 +1100 Subject: [PATCH] remove runtime test --- test/runtime.js | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 test/runtime.js diff --git a/test/runtime.js b/test/runtime.js deleted file mode 100644 index eac6e36615..0000000000 --- a/test/runtime.js +++ /dev/null @@ -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/)); - }); -});