Skip to content

Commit

Permalink
Bump fixture test timeouts.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwilsonvu committed Oct 22, 2022
1 parent 59f6425 commit fb61518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fixture.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const getTestFiles = (dir: string): Array<string> => {

describe("fixture", function () {
it("loads the plugin without crashing", async () => {
jest.setTimeout(10 * 1000);
jest.setTimeout(100 * 1000);
const exampleFile = path.join("test", "fixture", "invalid", "jsx-undef.jsx");
const { exitCode } = await execa(eslintBinPath, ["--print-config", exampleFile], {
shell: true,
Expand All @@ -22,7 +22,7 @@ describe("fixture", function () {
});

it("produces reasonable lint errors", async () => {
jest.setTimeout(10 * 1000);
jest.setTimeout(100 * 1000);
try {
const exampleFile = path.join("test", "fixture", "invalid", "jsx-undef.jsx");
await execa(eslintBinPath, [exampleFile], {
Expand Down

0 comments on commit fb61518

Please sign in to comment.