import { getLocalVue } from "@tests/vitest/helpers"; import { mount } from "@vue/test-utils"; import { describe, expect, it } from "vitest"; import mountTarget from "./CompositeBox.vue"; const localVue = getLocalVue(); function getWrapper() { return mount(mountTarget, { propsData: { defaultDbKey: "?", effectiveExtensions: [ { id: "affybatch", text: "affybatch", composite_files: [ { name: "%s.pheno", optional: false, description: "Phenodata tab text file", }, { name: "%s.affybatch", optional: false, description: "AffyBatch R object saved to file", }, ], }, ], fileSourcesConfigured: true, ftpUploadSite: null, historyId: "historyId", listDbKeys: [], }, localVue, }); } describe("Composite", () => { it("rendering", async () => { const wrapper = getWrapper(); expect(wrapper.find("#btn-start").classes()).toEqual(expect.arrayContaining(["disabled"])); expect(wrapper.vm.showHelper).toBe(true); expect(wrapper.vm.enableStart).toBe(false); const extensions = wrapper.vm.listExtensions; expect(extensions.length).toBe(2); expect(extensions[0].id).toBe(null); expect(extensions[0].text).toBe("Select"); expect(extensions[1].id).toBe("affybatch"); }); });