Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
Refs ad53282
  • Loading branch information
thewilkybarkid committed Aug 8, 2024
1 parent ad53282 commit d5f120a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@
"@typescript-eslint/no-unused-vars": "off",
"import/no-unresolved": "off"
}
},
{
"files": ["integration/**/*.ts"],
"rules": {
"no-empty-pattern": "off"
}
}
],
"settings": {
Expand Down
2 changes: 1 addition & 1 deletion integration/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export { expect } from '@playwright/test'

const appFixtures: Fixtures<Record<never, never>, Record<never, never>, PlaywrightTestArgs & PlaywrightTestOptions> = {
baseURL: async ({}, use) => {
await use(`http://localhost:3000`)
await use('http://localhost:3000')
},
}

Expand Down

0 comments on commit d5f120a

Please sign in to comment.