Files
nuchat/backend/ui/nightwatch/nightwatch.d.ts
Fergus Molloy f9047644fe
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
serve vue spa from axum
2025-07-18 01:49:28 +01:00

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
}
}