Fixes modules test to actually test modules (#3672)

* Fixes modules test to actually test modules

It is a mystery how these tests ever passed before.

* Correct test -> suite
This commit is contained in:
Diogo Franco 2016-08-24 03:06:02 +09:00 committed by Henry Zhu
parent 3d0ef3a001
commit 1e6257bdcb

View File

@ -27,28 +27,28 @@ suite("es2015 preset", function () {
}); });
}); });
test("modules", function () { suite("modules", function () {
test("doesn't throw when passing one false", function () { test("doesn't throw when passing one false", function () {
expect(function () { expect(function () {
es2015.buildPreset(null, { loose: false }); es2015.buildPreset(null, { modules: false });
}).not.to.throw(); }).not.to.throw();
}); });
test("doesn't throw when passing one of: 'commonjs', 'amd', 'umd', 'systemjs", function () { test("doesn't throw when passing one of: 'commonjs', 'amd', 'umd', 'systemjs", function () {
expect(function () { expect(function () {
es2015.buildPreset(null, { loose: "commonjs" }); es2015.buildPreset(null, { modules: "commonjs" });
}).not.to.throw(); }).not.to.throw();
expect(function () { expect(function () {
es2015.buildPreset(null, { loose: "amd" }); es2015.buildPreset(null, { modules: "amd" });
}).not.to.throw(); }).not.to.throw();
expect(function () { expect(function () {
es2015.buildPreset(null, { loose: "umd" }); es2015.buildPreset(null, { modules: "umd" });
}).not.to.throw(); }).not.to.throw();
expect(function () { expect(function () {
es2015.buildPreset(null, { loose: "systemjs" }); es2015.buildPreset(null, { modules: "systemjs" });
}).not.to.throw(); }).not.to.throw();
}); });
}); });