Files
nuchat/ui/nightwatch/nightwatch.d.ts
Fergus Molloy e2c7faba5a
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 8s
remove separate ui service, serve ui with backend
2025-07-18 01:54:59 +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
}
}