diff --git a/cypress/integration/kitchen.spec.ts b/cypress/integration/kitchen.spec.ts index 757ab89..d2ad18e 100644 --- a/cypress/integration/kitchen.spec.ts +++ b/cypress/integration/kitchen.spec.ts @@ -19,7 +19,7 @@ describe('Kitchen', () => { cy.press('Pa amb tomàquet'); // Act & Assert - Ingredients - cy.press('Let\'s cook!'); + cy.press('Let\'s cook this!'); cy.see('Mise en place'); cy.see('Bread'); cy.see('1 Tomato'); @@ -51,7 +51,7 @@ describe('Kitchen', () => { it('Uses timers', () => { // Arrange cy.press('Pa amb tomàquet'); - cy.press('Let\'s cook!'); + cy.press('Let\'s cook this!'); cy.press('Next'); cy.press('Show timers'); @@ -77,7 +77,7 @@ describe('Kitchen', () => { it('Persists state', () => { // Arrange cy.press('Pa amb tomàquet'); - cy.press('Let\'s cook!'); + cy.press('Let\'s cook this!'); cy.press('Bread'); cy.press('Next'); cy.press('Show timers'); @@ -97,7 +97,7 @@ describe('Kitchen', () => { cy.see('Timer 1'); cy.ariaLabel('Close the modal').click(); - cy.press('Show ingredients'); + cy.press('Previous'); cy.contains('label', 'Bread').within(() => { cy.get('input').should('match', ':checked'); @@ -112,12 +112,12 @@ describe('Kitchen', () => { cy.press('not now'); // Assert - cy.dontSee('Let\'s cook!'); + cy.dontSee('Let\'s cook this!'); cy.go('back'); cy.press('Pa amb tomàquet'); cy.wait(1000); - cy.dontSee('Let\'s cook!'); + cy.dontSee('Let\'s cook this!'); }); }); diff --git a/src/components/AppHeader.vue b/src/components/AppHeader.vue index 977357d..d3cb8f8 100644 --- a/src/components/AppHeader.vue +++ b/src/components/AppHeader.vue @@ -100,10 +100,6 @@ const navigationButton = $computed(() => { return 'logo'; }); const backText = $computed(() => { - if (Date.now()) { - return 'Noel De Martin\'s Public Recipes'; - } - if (Viewer.active) { return collection?.name ?? Viewer.collection?.name diff --git a/src/routing/pages/kitchen/components/KitchenPage.vue b/src/routing/pages/kitchen/components/KitchenPage.vue index e60a52c..6ec847f 100644 --- a/src/routing/pages/kitchen/components/KitchenPage.vue +++ b/src/routing/pages/kitchen/components/KitchenPage.vue @@ -13,7 +13,7 @@