Skip to content

Commit

Permalink
chore(test/browser): bump test total in fix-4686
Browse files Browse the repository at this point in the history
Brings specs/fix-4686.test.mjs up to date with the additional test cases
added in commit 285bc61 and
commit b8140fc.
  • Loading branch information
mbland committed Jan 4, 2024
1 parent c756441 commit 8d0b401
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/browser/specs/fix-4686.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ const {
} = await runVitest(['--config', 'vitest.config-basepath.mts'])

await test('tests run in presence of config.base', async () => {
assert.ok(browserResultJson.testResults.length === 8, 'Not all the tests have been run')
assert.ok(passedTests.length === 7, 'Some tests failed')
assert.ok(failedTests.length === 1, 'Some tests have passed but should fail')
assert.ok(browserResultJson.testResults.length === 10, 'Not all the tests have been run')
assert.ok(passedTests.length === 8, 'Some tests failed')
assert.ok(failedTests.length === 2, 'Some tests have passed but should fail')

assert.doesNotMatch(stderr, /Unhandled Error/, 'doesn\'t have any unhandled errors')
})

0 comments on commit 8d0b401

Please sign in to comment.