All files / specs gnibIreland.spec.ts

100% Statements 7/7
100% Branches 0/0
100% Functions 3/3
100% Lines 6/6
1 2 3 4 5 6 7 8 9 10 11 121x   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();
  });
 
});