Skip to content

Commit

Permalink
test(fixture): fix manifest update
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj committed Feb 12, 2024
1 parent 2039d87 commit b1ffea5
Show file tree
Hide file tree
Showing 2 changed files with 187 additions and 52 deletions.
5 changes: 5 additions & 0 deletions test/build-turbopack-tests-manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,11 @@ async function updatePassingTests() {
status = 'flakey'
}

// treat test-level todo as same as pending
if (status === 'todo') {
status = 'pending'
}

const statusArray = fileResults[status]
if (!statusArray) {
throw new Error(`unexpected status "${status}"`)
Expand Down
Loading

0 comments on commit b1ffea5

Please sign in to comment.