fix(core): update

This commit is contained in:
2023-11-09 21:17:13 +01:00
parent c083a47f07
commit 355c2d132e
14 changed files with 3062 additions and 1279 deletions

View File

@@ -26,4 +26,4 @@ tap.test('should run in parallel', async (toolsArg) => {
}, 0);
});
tap.start();
await tap.start();

View File

@@ -27,4 +27,4 @@ tap.test('should find an entry', async () => {
expect(result.value1).toEqual('heyho3');
});
tap.start();
await tap.start();

View File

@@ -22,4 +22,4 @@ tap.test('should be able to inform about a lost interest', async () => {
testInterestmap.informLostInterest(3);
});
tap.start();
await tap.start();

View File

@@ -14,4 +14,4 @@ tap.test('should never be longer than the set length', async () => {
expect(testLimitedArray.array.length < 7).toBeTrue();
});
tap.start();
await tap.start();

View File

@@ -21,4 +21,4 @@ tap.test('should add objects once and return true', async () => {
expect(myLoopTracker.checkAndTrack(object2)).toBeFalse();
});
tap.start();
await tap.start();

View File

@@ -73,4 +73,4 @@ tap.test('should get one object and then remove it', async () => {
expect(testObjectmap.getArray()).not.toContain(oneObject);
});
tap.start();
await tap.start();

View File

@@ -83,4 +83,4 @@ tap.test('lik.Stringmap.empty() -> should remove wipe and then notify', async ()
testStringmap.wipe();
});
tap.start();
await tap.start();

View File

@@ -20,4 +20,4 @@ tap.test('should create a timed aggregaotor', async (tools) => {
await tools.delayFor(2000);
});
tap.start();
await tap.start();

View File

@@ -37,4 +37,4 @@ tap.test("should create a JSON object that reflects a tree's hierachy", async ()
const jsonTreet = testTree.toJsonWithHierachy(testInstance);
});
tap.start();
await tap.start();