All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s
14 lines
433 B
TypeScript
14 lines
433 B
TypeScript
import { NightwatchCustomAssertions, NightwatchCustomCommands } from 'nightwatch'
|
|
|
|
declare module 'nightwatch' {
|
|
interface NightwatchCustomAssertions {
|
|
// Add your custom assertions' types here
|
|
// elementHasCount: (selector: string, count: number) => NightwatchBrowser
|
|
}
|
|
|
|
interface NightwatchCustomCommands {
|
|
// Add your custom commands' types here
|
|
// strictClick: (selector: string) => NightwatchBrowser
|
|
}
|
|
}
|