mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-23 23:49:43 -05:00
a277e98dfd
* chore: migrate angular adapter to monorepo * fix: update angular tests to use @cypress/angular * update snapshots * update snapshots * update params * replace cypress-angular with @cypress/angular * make angular private * chore: deps * remove git keep * chore: update yarn.lock * add test
10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
import { StyleOptions } from '@cypress/mount-utils'
|
|
|
|
interface Config {
|
|
detectChanges?: boolean
|
|
|
|
log?: boolean
|
|
}
|
|
|
|
export type CypressAngularConfig = Partial<StyleOptions> & Partial<Config>;
|