diff --git a/webapp/src/components/training/__tests__/TrainingInformation.spec.ts b/webapp/src/components/training/__tests__/TrainingInformation.spec.ts deleted file mode 100644 index 339bf8f82..000000000 --- a/webapp/src/components/training/__tests__/TrainingInformation.spec.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { expect, it } from "vitest"; -import { directive as Tippy } from "vue-tippy"; -import { mount } from "@vue/test-utils"; -import { List } from "immutable"; - -import type { BatchLogs, EpochLogs, RoundLogs } from "@epfml/discojs"; - -import TrainingInformation from "../TrainingInformation.vue"; - -it("shows messages", async () => { - const wrapper = mount(TrainingInformation, { - global: { - directives: { Tippy }, - stubs: { apexchart: true }, - }, - props: { - rounds: List(), - epochsOfRound: List(), - numberOfEpochs: 30, - batchesOfEpoch: List(), - messages: List.of("a", "b", "c"), - hasValidationData: false, - isTraining: true, - isTrainingAlone: false, - }, - }); - - expect(wrapper.findAll("#mapHeader li")).toHaveLength(0); -});