Skip to content

Commit fb61518

Browse files
committed
Bump fixture test timeouts.
1 parent 59f6425 commit fb61518

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/fixture.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const getTestFiles = (dir: string): Array<string> => {
1313

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

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

0 commit comments

Comments
 (0)