Skip to content

Commit

Permalink
test: 1000000 timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinFay committed Jun 12, 2024
1 parent 9b7bab8 commit ccc9f65
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/config-utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ test('create_mount_folder_init_webr works', async () => {

await webR.close();

});
}, 1000000);
3 changes: 2 additions & 1 deletion tests/download-utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,5 @@ test('download_and_untar works', async () => {
destination_folder
)
).toBe(false);
});

}, 1000000);
3 changes: 2 additions & 1 deletion tests/install-utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,5 @@ test('installOnePackage works', async () => {
destination_folder
)
).toBe(false);
});

}, 1000000);
2 changes: 1 addition & 1 deletion tests/install.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ test('installIt works', async () => {
{ recursive: true, force: true }
);

});
}, 1000000);

test('installFromDesc works', async () => {
let temp_dir = path.join(os.tmpdir(), 'install');
Expand Down
5 changes: 3 additions & 2 deletions tests/packagejsonmanip.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ describe('packagejsonmanip', () => {

fs.unlinkSync(temp_file);
});
});
}, 1000000);

describe('addDependencies', () => {
it('should add the provided dependencies to the package.json file', () => {
Expand All @@ -72,4 +72,5 @@ describe('packagejsonmanip', () => {
fs.unlinkSync(temp_file);
});
});
});

}, 1000000);

0 comments on commit ccc9f65

Please sign in to comment.