Skip to content

Commit

Permalink
fix: skip bridge tests in vue-i18n
Browse files Browse the repository at this point in the history
1. They're for vue 2.
2. They include CDN urls, which might suffer from timeouts in CI.
  • Loading branch information
haoqunjiang committed Apr 12, 2024
1 parent 644dab7 commit 1dc225e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/vue-i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ export async function test(options: RunOptions) {
args: ['--all', '-t'],
},
beforeTest: 'pnpm playwright install chromium',
test: ['test:cover', 'test:type', 'test:e2e'],
test: [
'test:cover',
'test:type',
{
script: 'test:e2e',
args: ['--exclude', 'e2e/bridge/**'],
},
],
})
}

0 comments on commit 1dc225e

Please sign in to comment.