Skip to content

Commit

Permalink
feat: add vitest-tests/reporters-large (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio authored Dec 11, 2023
1 parent 50213bf commit 7a1d904
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ecosystem-ci-from-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ on:
- vitest-github-actions-reporter
- vitest-browser-simple
- vitest-coverage-large
- vitest-reporters-large
jobs:
init:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -103,6 +104,7 @@ jobs:
- vitest-github-actions-reporter
- vitest-browser-simple
- vitest-coverage-large
- vitest-reporters-large
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci-selected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ on:
- vitest-github-actions-reporter
- vitest-browser-simple
- vitest-coverage-large
- vitest-reporters-large
jobs:
execute-selected-suite:
timeout-minutes: 60
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ecosystem-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jobs:
- vitest-github-actions-reporter
- vitest-browser-simple
- vitest-coverage-large
- vitest-reporters-large
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
11 changes: 11 additions & 0 deletions tests/vitest-reporters-large.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { runInRepo } from '../utils'
import { RunOptions } from '../types'

export async function test(options: RunOptions) {
await runInRepo({
...options,
repo: 'vitest-tests/reporters-large',
beforeTest: ['pnpm cpu-profile'],
test: 'test',
})
}

0 comments on commit 7a1d904

Please sign in to comment.