1 2 3 4 5 6 7 8 9 10 11 12 | 1x 1x 1x 1x 1x 1x | import gnibIreland from '../src'; describe("******* gnibIreland function *******", function () { it("should return a success response", async(done) => { const response = await gnibIreland.checkSlotsAvailability(); expect(response.status).toEqual('success'); done(); }); }); |