Files
cypress/npm/angular/lib/proxy.component.ts
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

14 lines
208 B
TypeScript

import { Component, OnInit } from '@angular/core'
@Component({
selector: 'app-proxy',
template: '',
})
export class ProxyComponent implements OnInit {
constructor () {
}
ngOnInit (): void {
}
}