chore: rename alias

This commit is contained in:
kolaente 2023-04-01 21:30:25 +02:00
parent d4e452545a
commit a803bc637e
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 2 additions and 3 deletions

View File

@ -8,13 +8,13 @@ describe('Project History', () => {
prepareProjects()
it('should show a project history on the home page', () => {
cy.intercept(Cypress.env('API_URL') + '/projects*').as('loadProjects')
cy.intercept(Cypress.env('API_URL') + '/projects*').as('loadProjectArray')
cy.intercept(Cypress.env('API_URL') + '/projects/*').as('loadProject')
const projects = ProjectFactory.create(6)
cy.visit('/')
cy.wait('@loadProjects')
cy.wait('@loadProjectArray')
cy.get('body')
.should('not.contain', 'Last viewed')

View File

@ -73,7 +73,6 @@
</li>
</template>
</draggable>
</template>
<script lang="ts" setup>