mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-30 19:18:45 -06:00
* 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
14 lines
208 B
TypeScript
14 lines
208 B
TypeScript
import { Component, OnInit } from '@angular/core'
|
|
|
|
@Component({
|
|
selector: 'app-proxy',
|
|
template: '',
|
|
})
|
|
export class ProxyComponent implements OnInit {
|
|
constructor () {
|
|
}
|
|
|
|
ngOnInit (): void {
|
|
}
|
|
}
|