-
-
Notifications
You must be signed in to change notification settings - Fork 668
Expand file tree
/
Copy pathbasic.test.js
More file actions
190 lines (153 loc) · 5.74 KB
/
basic.test.js
File metadata and controls
190 lines (153 loc) · 5.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
"use strict";
const { run } = require("../../utils/test-utils");
describe("bundle command", () => {
it("should work without command (default command)", async () => {
const { exitCode, stderr, stdout } = await run(__dirname, []);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it("should work without command and options (default command)", async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["--mode", "development"]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it("should work with multiple entries syntax without command (default command)", async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["./src/index.js", "./src/other.js"]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it("should work with multiple entries syntax without command with options (default command)", async () => {
const { exitCode, stderr, stdout } = await run(__dirname, [
"./src/index.js",
"./src/other.js",
"--mode",
"development",
]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it("should work with multiple entries syntax without command with options #2 (default command)", async () => {
const { exitCode, stderr, stdout } = await run(__dirname, [
"--mode",
"development",
"./src/index.js",
"./src/other.js",
]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it("should work with multiple entries syntax without command with options #3 (default command)", async () => {
const { exitCode, stderr, stdout } = await run(__dirname, [
"./src/index.js",
"./src/other.js",
"--entry",
"./src/again.js",
]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it("should work with and override entries from the configuration", async () => {
const { exitCode, stderr, stdout } = await run(__dirname, [
"./src/index.js",
"./src/other.js",
"--config",
"./entry.config.js",
]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it('should work with the "build" alias', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["build"]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it('should work with "bundle" alias', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["bundle"]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it('should work with the "b" alias', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["b"]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it('should work with entries syntax using the "build" alias', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["build", "./src/index.js"]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it('should work with entries syntax using the "bundle" alias', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["bundle", "./src/index.js"]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it('should work with entries syntax using the "b" alias', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["b", "./src/index.js"]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it('should work with multiple entries syntax using the "build" alias', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, [
"build",
"./src/index.js",
"./src/other.js",
]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it('should work with multiple entries syntax using the "build" alias and options', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, [
"build",
"./src/index.js",
"./src/other.js",
"--mode",
"development",
]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
it('should work with multiple entries syntax using the "build" alias and options #2', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, [
"build",
"--mode",
"development",
"./src/index.js",
"./src/other.js",
]);
expect(exitCode).toBe(0);
expect(stderr).toBeFalsy();
expect(stdout).toBeTruthy();
});
// cSpell:ignore buil
it('should log error and suggest right name on the "buil" command', async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["buil"]);
expect(exitCode).toBe(2);
expect(stderr).toContain("Unknown command or entry 'buil'");
expect(stderr).toContain("Did you mean 'build' (alias 'bundle, b')?");
expect(stderr).toContain("Run 'webpack --help' to see available commands and options");
expect(stdout).toBeFalsy();
});
it("should log supplied config when logging level is log", async () => {
const { exitCode, stderr, stdout } = await run(__dirname, ["--config", "./log.config.js"]);
expect(exitCode).toBe(0);
expect(stderr).toContain("Compiler starting...");
expect(stderr).toContain("Compiler is using config: './log.config.js'");
expect(stderr).toContain("Compiler finished");
expect(stdout).toBeTruthy();
});
});