Skip to content

Commit

Permalink
chore: update truncateThreshold value (#3682)
Browse files Browse the repository at this point in the history
  • Loading branch information
btea committed Jun 27, 2023
1 parent 47383eb commit 189959e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/failing/vite.config.ts
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
test: {
include: ['test/*.test.ts'],
chaiConfig: {
truncateThreshold: 9999,
truncateThreshold: 0,
},
},
})
2 changes: 1 addition & 1 deletion test/fails/vite.config.ts
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
test: {
include: ['test/*.test.ts'],
chaiConfig: {
truncateThreshold: 9999,
truncateThreshold: 0,
},
},
})
2 changes: 1 addition & 1 deletion test/public-api/vitest.config.ts
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
test: {
include: ['tests/**/*.spec.ts'],
chaiConfig: {
truncateThreshold: 9999,
truncateThreshold: 0,
},
},
})
2 changes: 1 addition & 1 deletion test/reporters/vitest.config.ts
Expand Up @@ -5,7 +5,7 @@ export default defineConfig({
exclude: ['node_modules', 'fixtures', 'dist'],
testTimeout: 100000,
chaiConfig: {
truncateThreshold: 9999,
truncateThreshold: 0,
},
},
})
2 changes: 1 addition & 1 deletion test/watch/vitest.config.ts
Expand Up @@ -5,7 +5,7 @@ export default defineConfig({
reporters: 'verbose',
include: ['test/**/*.test.*'],
chaiConfig: {
truncateThreshold: 9999,
truncateThreshold: 0,
},

// For Windows CI mostly
Expand Down

0 comments on commit 189959e

Please sign in to comment.