diff --git a/components/ZScaling.vue b/components/ZScaling.vue new file mode 100644 index 00000000..ad825c65 --- /dev/null +++ b/components/ZScaling.vue @@ -0,0 +1,93 @@ + + + + + diff --git a/test/components/FeedBack/ErrorsBanner.nuxt.test.js b/test/components/FeedBack/ErrorsBanner.nuxt.test.js index 6f9e3d79..a01bb0a5 100644 --- a/test/components/FeedBack/ErrorsBanner.nuxt.test.js +++ b/test/components/FeedBack/ErrorsBanner.nuxt.test.js @@ -13,7 +13,7 @@ const vuetify = createVuetify({ }) describe("FeedBackErrorBanner.vue", async () => { - test(`Test reload`, async () => { + ;(test(`Test reload`, async () => { const wrapper = mount(FeedBackErrorBanner, { global: { plugins: [createTestingPinia(), vuetify], @@ -48,5 +48,5 @@ describe("FeedBackErrorBanner.vue", async () => { const v_btn = wrapper.findAll(".v-btn") await v_btn[1].trigger("click") expect(feedback_store.server_error).toBe(false) - }) + })) })