Skip to content

Commit b33cd74

Browse files
committed
test: skip test-build rolldown-dev-ssr
1 parent 5cfa825 commit b33cd74

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

playground/rolldown-dev-react/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "../tsconfig.json",
3-
"include": ["src", ".ts"],
3+
"include": ["src", "*.ts"],
44
"compilerOptions": {
55
"jsx": "react-jsx"
66
}

playground/rolldown-dev-ssr/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
"private": true,
44
"type": "module",
55
"scripts": {
6-
"dev": "vite"
6+
"dev": "vite",
7+
"build": "vite build",
8+
"preview": "vite preview"
79
},
810
"dependencies": {
911
"react": "^18.3.1",

playground/rolldown-dev-ssr/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "../tsconfig.json",
3-
"include": ["src", ".ts"],
3+
"include": ["src", "*.ts"],
44
"compilerOptions": {
55
"jsx": "react-jsx"
66
}

vitest.config.e2e.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export default defineConfig({
2424
'./playground/object-hooks/**/*.spec.[tj]s', // object hook sequential
2525
'./playground/optimize-deps/**/*.spec.[tj]s', // https://github.com/rolldown/rolldown/issues/2031
2626
'./playground/tsconfig-json/__tests__/**/*.spec.[tj]s', // decorators is not supported by oxc
27+
'./playground/rolldown-dev-ssr/**/*', // todo
2728
]
2829
: []),
2930
...defaultExclude,

0 commit comments

Comments
 (0)