feature/projects-all-the-way-down #3323

Merged
konrad merged 123 commits from feature/projects-all-the-way-down into main 2023-05-30 10:09:40 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit a803bc637e - Show all commits

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')
dpschen marked this conversation as resolved Outdated

Rename to loadProjectArray to make the vars better distinguishable.

Rename to `loadProjectArray` to make the vars better distinguishable.
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>