1
0
mirror of https://github.com/fluencelabs/aqua-playground synced 2025-03-16 12:30:55 +00:00

unskip tests

This commit is contained in:
DieMyst 2022-03-10 12:03:16 +03:00
parent 8ec4f800f4
commit c75cd5db0d

@ -183,7 +183,7 @@ describe('Testing examples', () => {
expect(result).toEqual([[], [], [], [], null, [], null]); expect(result).toEqual([[], [], [], [], null, [], null]);
}); });
it.skip('recursiveStreams.aqua', async () => { it('recursiveStreams.aqua', async () => {
let recResult = await recursiveStreamsCall(); let recResult = await recursiveStreamsCall();
console.log(recResult) console.log(recResult)
@ -207,7 +207,7 @@ describe('Testing examples', () => {
expect(topologyResult).toEqual(res); expect(topologyResult).toEqual(res);
}); });
it.skip('topology.aqua bug 427', async () => { it('topology.aqua bug 427', async () => {
let topologyResult = await topologyBug427Call(peer2); let topologyResult = await topologyBug427Call(peer2);
expect(topologyResult).toEqual(["some string", "some string"]); expect(topologyResult).toEqual(["some string", "some string"]);
@ -313,7 +313,7 @@ describe('Testing examples', () => {
expect(joinRelayCallResult.length).toBeGreaterThanOrEqual(2); expect(joinRelayCallResult.length).toBeGreaterThanOrEqual(2);
}); });
it.skip('join.aqua network', async () => { it('join.aqua network', async () => {
let joinCallResult = await joinIdxCall(); let joinCallResult = await joinIdxCall();
expect(joinCallResult.length).toBeGreaterThanOrEqual(2); expect(joinCallResult.length).toBeGreaterThanOrEqual(2);
}, 16000); }, 16000);