Skip to content

Commit 5f6b0a0

Browse files
committed
updated test name
1 parent 6445f57 commit 5f6b0a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/setup/dataImportFlow.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe("Data Importation Without Docker", () => {
1414
process.env = { ...mockEnv }; // Restore environment variables
1515
});
1616

17-
it("should import sample data if the database is empty and user opts to import", async () => {
17+
it("should import sample data if the database is empty and user opts to import sample data", async () => {
1818
const checkDbMock = vi
1919
.fn()
2020
.mockImplementation(async (): Promise<boolean> => {
@@ -51,7 +51,7 @@ describe("Data Importation Without Docker", () => {
5151
expect(importDataMock).toBeCalled();
5252
});
5353

54-
it("should import sample data if the database is empty and user opts not to import", async () => {
54+
it("should not import sample data if the database is empty and user opts not to import sample data", async () => {
5555
const checkDbMock = vi
5656
.fn()
5757
.mockImplementation(async (): Promise<boolean> => {

0 commit comments

Comments
 (0)