Skip to content

Commit

Permalink
move test to separate folder
Browse files Browse the repository at this point in the history
  • Loading branch information
byzyk committed May 4, 2018
1 parent a3d3af8 commit 71b05f9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
3 changes: 3 additions & 0 deletions test/configCases/library/umd-array/index.js
@@ -0,0 +1,3 @@
it("should run", function() {

});
10 changes: 10 additions & 0 deletions test/configCases/library/umd-array/webpack.config.js
@@ -0,0 +1,10 @@
module.exports = {
output: {
libraryTarget: "umd",
library: {
root: ["test", "library"],
amd: "test-library",
commonjs: "test-library"
}
}
};
28 changes: 8 additions & 20 deletions test/configCases/library/umd/webpack.config.js
@@ -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"
}
}
];
};

0 comments on commit 71b05f9

Please sign in to comment.