Skip to content

Commit

Permalink
Update index.test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
fishylunar committed Aug 25, 2023
1 parent 452cb83 commit a44f0e0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,8 @@ describe("fish hash", () => {
});
});
describe("disklist", () => {
test("async", async() => {
expect(typeof await shark.disklist.listDrives() === 'object')
.toBeTruthy();
}, 250000);
test("sync", () => {
test("Check drives", () => {
expect(typeof shark.disklist.listDrivesSync() === 'object')
.toBeTruthy();
}, 250000);
}, 20000);
});

0 comments on commit a44f0e0

Please sign in to comment.