Skip to content

Commit 6fea7f7

Browse files
committed
test: narrow webpack e2e test suite to webpack-specific tests
1 parent e6428ea commit 6fea7f7

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

tests/e2e.bzl

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,22 @@ ESBUILD_TESTS = [
3232
"tests/basic/**",
3333
"tests/build/**",
3434
"tests/commands/add/**",
35-
"tests/commands/e2e/**",
3635
"tests/commands/serve/ssr-http-requests-assets.js",
3736
"tests/i18n/**",
3837
"tests/vite/**",
3938
"tests/vitest/**",
4039
"tests/test/**",
4140
]
4241

42+
WEBPACK_TESTS = [
43+
"tests/basic/**",
44+
"tests/build/**",
45+
"tests/commands/add/**",
46+
"tests/commands/serve/**",
47+
"tests/i18n/**",
48+
"tests/test/**",
49+
]
50+
4351
WEBPACK_IGNORE_TESTS = [
4452
"tests/vite/**",
4553
"tests/vitest/**",
@@ -169,7 +177,7 @@ def _e2e_suite(name, runner, type, data, toolchain_name = "", toolchain = None):
169177
tests = BROWSER_TESTS
170178
ignore = None
171179
elif type == "webpack":
172-
tests = None
180+
tests = WEBPACK_TESTS
173181
ignore = BROWSER_TESTS + WEBPACK_IGNORE_TESTS
174182

175183
# Standard e2e tests

0 commit comments

Comments
 (0)