Skip to content

Commit

Permalink
remove props check from default test
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaLRussell committed Oct 28, 2024
1 parent 3d1a804 commit 825b5b5
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/unit/components/defaultLayout.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import DefaultLayout from "@/layouts/default.vue";
import { mountSuspended, registerEndpoint } from "@nuxt/test-utils/runtime";
import { waitFor } from "@testing-library/vue";

const stubs = {
CIcon: true,
Expand Down Expand Up @@ -38,11 +37,6 @@ describe("default layout", () => {

expect(headerLogo.isVisible()).toBe(true);
expect(sidebarLogo.isVisible()).toBe(true);
await waitFor(() => {
expect(headerLogo.attributes().title).toContain("Model version: 1.2.3");
expect(headerLogo.attributes().title).toContain("R API version: 4.5.6");
expect(headerLogo.attributes().title).toContain("Web app version: 7.8.9");
});
});

describe("on smaller devices", () => {
Expand Down

0 comments on commit 825b5b5

Please sign in to comment.