Skip to content

Commit

Permalink
Réactiver tests connectivité
Browse files Browse the repository at this point in the history
  • Loading branch information
julienmalard committed Dec 18, 2024
1 parent df87bb4 commit 81f3af6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/sfip.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const testerGossipSub = async ({
expect(retour).to.deep.equal({ idPair, message, type: "pong" });
};

describe.skip("Connectivité SFIP", function () {
describe("Connectivité SFIP", function () {
let idPairNavig: string;
let idPairNode: string;

Expand Down Expand Up @@ -118,15 +118,15 @@ describe.skip("Connectivité SFIP", function () {
await attendreConnecté({ sfip, idPair: idPairNode });
});

it.skip("GossipSub avec Node.js", async () => {
it("GossipSub avec Node.js", async () => {
await testerGossipSub({ sfip, idPair: idPairNode });
});

it("Connexion à un navigateur", async () => {
await attendreConnecté({ sfip, idPair: idPairNavig });
});

it.skip("Gossipsub avec navigateur", async () => {
it("Gossipsub avec navigateur", async () => {
await testerGossipSub({ sfip, idPair: idPairNavig });
});

Expand Down

0 comments on commit 81f3af6

Please sign in to comment.