feat: Upgrade to Angular14 (#4668)

* refactor: 🔥 removed angular-bootstrap-md dependancy

* chore: update tsconfig

* yeah

* ng14 upgrade

* refactor: migration changes

* fix: fixed CLI

* test: Fixed automation
This commit is contained in:
Jamie 2022-06-22 21:33:45 +01:00 committed by GitHub
commit b9d55a469b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 1829 additions and 1415 deletions

View file

@ -24,7 +24,7 @@ export class DiscoverCard {
}
get requestType(): Cypress.Chainable<any> {
return cy.get(`#type${this.id}`);
return cy.get(`#type${this.id}-${this.movie ? 'movie': 'tvShow'}`);
}
get statusClass(): Cypress.Chainable<any> {

View file

@ -3,7 +3,7 @@ import { searchPage as Page } from "@/integration/page-objects";
describe("Search Tests", () => {
beforeEach(() => {
cy.login();
cy.intercept("POST", "v2/search/multi/").as("searchResponse");
cy.intercept("POST", "api/v2/search/multi/*").as("searchResponse");
});
it("Single result when TV Search Only", () => {