mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-23 12:54:04 +00:00
[test] double the time
This commit is contained in:
parent
641bf9785f
commit
b78586a0ef
|
@ -384,7 +384,7 @@ describe('SinglyLinkedList Performance Test', () => {
|
|||
for (let i = 0; i < magnitude.LINEAR; i++) {
|
||||
list.push(i);
|
||||
}
|
||||
expect(performance.now() - startPushTime).toBeLessThan(bigO.LINEAR * 10);
|
||||
expect(performance.now() - startPushTime).toBeLessThan(bigO.LINEAR * 20);
|
||||
|
||||
const startPopTime = performance.now();
|
||||
|
||||
|
|
Loading…
Reference in a new issue