mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-26 11:34:14 +00:00
Remove unused test
This commit is contained in:
parent
6ee338fc76
commit
4c229c358d
1 changed files with 0 additions and 20 deletions
|
|
@ -1,20 +0,0 @@
|
|||
import LoadQueue from "./loadQueue";
|
||||
|
||||
describe("LoadQueue", () => {
|
||||
it("executes some promises", () => {
|
||||
const results = [];
|
||||
const makePushPromise = n => {
|
||||
return new Promise(resolve => {
|
||||
results.push(n);
|
||||
resolve();
|
||||
});
|
||||
};
|
||||
|
||||
const task1 = makePushPromise(1);
|
||||
const task2 = makePushPromise(2);
|
||||
const task3 = makePushPromise(3);
|
||||
const task4 = makePushPromise(4);
|
||||
|
||||
const loadQueue = new LoadQueue({ threads: 4 });
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue