Files
cypress/npm/angular/lib/config.ts
T
Lachlan Miller a277e98dfd chore(npm/angular): migrate angular adapter to monorepo (#16434)
* 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
2021-05-19 11:35:06 +10:00

10 lines
194 B
TypeScript

import { StyleOptions } from '@cypress/mount-utils'
interface Config {
detectChanges?: boolean
log?: boolean
}
export type CypressAngularConfig = Partial<StyleOptions> & Partial<Config>;