Skip to content

Commit acae172

Browse files
committed
Removes unused history name from HistoryArchiveWizard tests
1 parent 69183c3 commit acae172

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

client/src/components/History/Archiving/HistoryArchiveWizard.test.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const { server, http } = useServerMock();
2727
const TEST_HISTORY_ID = "test-history-id";
2828
const TEST_HISTORY = {
2929
id: TEST_HISTORY_ID,
30-
name: "fake-history-name",
3130
archived: false,
3231
};
3332

@@ -63,13 +62,6 @@ describe("HistoryArchiveWizard.vue", () => {
6362
);
6463
});
6564

66-
it("should render the history name in the header", async () => {
67-
const wrapper = await mountComponentWithHistory(TEST_HISTORY as HistorySummary);
68-
69-
const header = wrapper.find("h1");
70-
expect(header.text()).toContain(TEST_HISTORY.name);
71-
});
72-
7365
it("should render only the simple archival mode when no writeable file sources are available", async () => {
7466
const wrapper = await mountComponentWithHistory(TEST_HISTORY as HistorySummary);
7567

0 commit comments

Comments
 (0)