Skip to content

Commit c1f4f69

Browse files
committed
Fix integration test
1 parent d9aaec0 commit c1f4f69

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

packages/remix/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module.exports = {
66
parserOptions: {
77
jsx: true,
88
},
9-
ignorePatterns: ['playwright.config.ts', 'vitest.config.ts', 'test/integration/**'],
9+
ignorePatterns: ['playwright.config.ts', 'vitest.config.ts', 'vitest.config.unit.ts', 'test/integration/**'],
1010
extends: ['../../.eslintrc.js'],
1111
overrides: [
1212
{

packages/remix/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"test:integration:ci": "run-s test:integration:clean test:integration:prepare test:integration:client:ci test:integration:server",
102102
"test:integration:prepare": "(cd test/integration && yarn install)",
103103
"test:integration:clean": "(cd test/integration && rimraf .cache node_modules build)",
104-
"test:integration:client": "yarn playwright install-deps && yarn playwright test test/integration/test/client/ --config vitest.config.integration.ts --project='chromium'",
104+
"test:integration:client": "yarn playwright install-deps && yarn playwright test test/integration/test/client/ --project='chromium'",
105105
"test:integration:client:ci": "yarn test:integration:client",
106106
"test:integration:server": "export NODE_OPTIONS='--stack-trace-limit=25' && vitest run",
107107
"test:unit": "vitest run --config vitest.config.unit.ts",

packages/remix/tsconfig.test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "./tsconfig.json",
33

4-
"include": ["test/**/*", "vitest.config.integration.ts", "vitest.config.unit.ts"],
4+
"include": ["test/**/*", "vitest.config.ts", "vitest.config.unit.ts"],
55

66
"compilerOptions": {
77
"lib": ["DOM", "ES2018"],
File renamed without changes.

0 commit comments

Comments
 (0)