move test to separate folder

This commit is contained in:
byzyk 2018-05-04 16:00:18 +04:00
parent a3d3af88a5
commit 71b05f9f83
3 changed files with 21 additions and 20 deletions

View File

@ -0,0 +1,3 @@
it("should run", function() {
});

View File

@ -0,0 +1,10 @@
module.exports = {
output: {
libraryTarget: "umd",
library: {
root: ["test", "library"],
amd: "test-library",
commonjs: "test-library"
}
}
};

View File

@ -1,22 +1,10 @@
module.exports = [
{
output: {
libraryTarget: "umd",
library: {
root: "testLibrary",
amd: "test-library",
commonjs: "test-library"
}
}
},
{
output: {
libraryTarget: "umd",
library: {
root: ["test", "library"],
amd: "test-library",
commonjs: "test-library"
}
module.exports = {
output: {
libraryTarget: "umd",
library: {
root: "testLibrary",
amd: "test-library",
commonjs: "test-library"
}
}
];
};