This repository was archived by the owner on Sep 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ module.exports = {
1515 'import/no-unresolved' : 'off' ,
1616 'prettier/prettier' : 'error' ,
1717 '@typescript-eslint/ban-ts-ignore' : 'off' ,
18+ '@typescript-eslint/ban-ts-comment' : 'off' ,
1819 } ,
1920 parser : '@typescript-eslint/parser' ,
2021 parserOptions : {
Original file line number Diff line number Diff line change 11/* eslint-disable no-console */
2- /* eslint-disable @typescript-eslint/ban-ts-ignore */
32import type { Config as JestConfig } from '@jest/types'
43import type { Event , State } from 'jest-circus'
54import type { Browser } from 'playwright-core'
Original file line number Diff line number Diff line change @@ -17,8 +17,10 @@ export type GenericBrowser = PlaywrightBrowserType<
1717 WebKitBrowser | ChromiumBrowser | FirefoxBrowser
1818>
1919
20+ type SelectorFunction = ( ...args : any [ ] ) => void
21+
2022export type SelectorType = {
21- script : string | Function | { path ?: string ; content ?: string }
23+ script : string | SelectorFunction | { path ?: string ; content ?: string }
2224 name : string
2325}
2426
You can’t perform that action at this time.
0 commit comments