Skip to content

Commit

Permalink
fix(nuxt): reorder the test commands to avoid interference between them
Browse files Browse the repository at this point in the history
The output of `test:fixtures` would interfere with the unit tests of
the `resolve` utility
  • Loading branch information
sodatea committed Apr 25, 2024
1 parent 028587e commit f8c996e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/nuxt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export async function test(options: RunOptions) {
repo: 'nuxt/nuxt',
build: 'build',
beforeTest: 'pnpm playwright-core install chromium',
test: ['test:fixtures', 'test:types', 'test:unit'],
test: ['test:unit', 'test:types', 'test:fixtures'],
})
}

0 comments on commit f8c996e

Please sign in to comment.