Skip to content

Commit db5421d

Browse files
remove jest concurrency
1 parent a81a7ac commit db5421d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

stress-tests/stress.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ const dbPath = normalize(GitHubActionsTempFolder + '/dbs')
1111
const binaryPath = normalize(GitHubActionsTempFolder + '/binaries')
1212

1313
for (let i = 0; i < 100; i++) {
14-
test.concurrent(`if run ${i} is successful`, async () => {
15-
Error.stackTraceLimit = Infinity
14+
test(`if run ${i} is successful`, async () => {
1615
console.log('CI:', process.env.useCIDBPath)
1716

1817
process.env.mysqlmsn_internal_DO_NOT_USE_deleteDBAfterStopped = String(!process.env.useCIDBPath)

tests/versions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jest.setTimeout(500_000);
1717

1818
for (const version of versions) {
1919
for (const username of usernames) {
20-
test.concurrent(`running on version ${version} with username ${username}`, async () => {
20+
test(`running on version ${version} with username ${username}`, async () => {
2121
process.env.mysqlmsn_internal_DO_NOT_USE_deleteDBAfterStopped = String(!process.env.useCIDBPath)
2222

2323
const options: ServerOptions = {

0 commit comments

Comments
 (0)