chore: move apps and test utils (#8129)

This commit is contained in:
Jason Rasmussen
2024-03-20 16:22:47 -05:00
committed by GitHub
parent c1402eee8e
commit 907eb869bc
13 changed files with 42 additions and 42 deletions
@@ -13,7 +13,7 @@ import {
restoreTempFolder,
testApp,
waitForEvent,
} from 'src/test-utils/utils';
} from 'test/utils';
describe(`Library watcher (e2e)`, () => {
let server: any;
+1 -1
View File
@@ -3,10 +3,10 @@ import fs from 'node:fs';
import { LibraryController } from 'src/controllers/library.controller';
import { LoginResponseDto } from 'src/domain/auth/auth.dto';
import { LibraryType } from 'src/entities/library.entity';
import { IMMICH_TEST_ASSET_PATH, IMMICH_TEST_ASSET_TEMP_PATH, restoreTempFolder, testApp } from 'src/test-utils/utils';
import request from 'supertest';
import { errorStub } from 'test/fixtures/error.stub';
import { uuidStub } from 'test/fixtures/uuid.stub';
import { IMMICH_TEST_ASSET_PATH, IMMICH_TEST_ASSET_TEMP_PATH, restoreTempFolder, testApp } from 'test/utils';
import { utimes } from 'utimes';
describe(`${LibraryController.name} (e2e)`, () => {