31 lines
672 B
TypeScript
31 lines
672 B
TypeScript
/* eslint @typescript-eslint/no-unused-vars: "off" */
|
|
import {
|
|
signin,
|
|
setupUser,
|
|
createDashboard,
|
|
createOrg,
|
|
createSource,
|
|
flush,
|
|
getByTestID,
|
|
getByInputName,
|
|
getByTitle,
|
|
createTask,
|
|
} from './support/commands'
|
|
|
|
declare global {
|
|
namespace Cypress {
|
|
interface Chainable {
|
|
signin: typeof signin
|
|
setupUser: typeof setupUser
|
|
createSource: typeof createSource
|
|
createTask: typeof createTask
|
|
createDashboard: typeof createDashboard
|
|
createOrg: typeof createOrg
|
|
flush: typeof flush
|
|
getByTestID: typeof getByTestID
|
|
getByInputName: typeof getByInputName
|
|
getByTitle: typeof getByTitle
|
|
}
|
|
}
|
|
}
|