Skip to content

Commit

Permalink
Replace it.failing with it.skip
Browse files Browse the repository at this point in the history
  • Loading branch information
mattphillips committed Sep 28, 2022
1 parent 469d778 commit cd37fec
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,8 @@ describe("jest-chain", () => {
});

// I don't think this is something that needs solving in this library
it.failing("can be used as the direct return value for a test function", () =>
expect(3).toBeGreaterThan(1).toBeLessThan(5)
);
it.skip("can be used as the direct return value for a test function", () =>
expect(3).toBeGreaterThan(1).toBeLessThan(5));

describe("Supports promises", () => {
it("can be used with resolves", () =>
Expand Down

0 comments on commit cd37fec

Please sign in to comment.