Skip to content

Commit 71b05f9

Browse files
committed
move test to separate folder
1 parent a3d3af8 commit 71b05f9

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
it("should run", function() {
2+
3+
});
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
output: {
3+
libraryTarget: "umd",
4+
library: {
5+
root: ["test", "library"],
6+
amd: "test-library",
7+
commonjs: "test-library"
8+
}
9+
}
10+
};
Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
1-
module.exports = [
2-
{
3-
output: {
4-
libraryTarget: "umd",
5-
library: {
6-
root: "testLibrary",
7-
amd: "test-library",
8-
commonjs: "test-library"
9-
}
10-
}
11-
},
12-
{
13-
output: {
14-
libraryTarget: "umd",
15-
library: {
16-
root: ["test", "library"],
17-
amd: "test-library",
18-
commonjs: "test-library"
19-
}
1+
module.exports = {
2+
output: {
3+
libraryTarget: "umd",
4+
library: {
5+
root: "testLibrary",
6+
amd: "test-library",
7+
commonjs: "test-library"
208
}
219
}
22-
];
10+
};

0 commit comments

Comments
 (0)