chore: organize tests and tweak stream delays (#942)

This commit is contained in:
Jeremy 2025-04-20 22:27:20 -07:00 committed by GitHub
parent 020494f63b
commit 6e16f3b30a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 21 additions and 21 deletions

View file

@ -53,11 +53,11 @@ export default defineConfig({
projects: [
{
name: 'setup:auth',
testMatch: /auth.setup.ts/,
testMatch: /e2e\/auth.setup.ts/,
},
{
name: 'setup:reasoning',
testMatch: /reasoning.setup.ts/,
testMatch: /e2e\/reasoning.setup.ts/,
dependencies: ['setup:auth'],
use: {
...devices['Desktop Chrome'],
@ -66,7 +66,7 @@ export default defineConfig({
},
{
name: 'chat',
testMatch: /chat.test.ts/,
testMatch: /e2e\/chat.test.ts/,
dependencies: ['setup:auth'],
use: {
...devices['Desktop Chrome'],
@ -75,7 +75,7 @@ export default defineConfig({
},
{
name: 'reasoning',
testMatch: /reasoning.test.ts/,
testMatch: /e2e\/reasoning.test.ts/,
dependencies: ['setup:reasoning'],
use: {
...devices['Desktop Chrome'],
@ -84,7 +84,7 @@ export default defineConfig({
},
{
name: 'artifacts',
testMatch: /artifacts.test.ts/,
testMatch: /e2e\/artifacts.test.ts/,
dependencies: ['setup:auth'],
use: {
...devices['Desktop Chrome'],