cleanup
This commit is contained in:
parent
9ba8565730
commit
36e8397ce2
6 changed files with 14 additions and 19 deletions
|
@ -1,5 +1,4 @@
|
|||
import { ImmichApi } from '../api/client';
|
||||
import path from 'node:path';
|
||||
import { SessionService } from '../services/session.service';
|
||||
import { LoginError } from '../cores/errors/login-error';
|
||||
import { exit } from 'node:process';
|
||||
|
|
|
@ -28,8 +28,7 @@ describe('SessionService', () => {
|
|||
});
|
||||
|
||||
beforeEach(() => {
|
||||
const configDir = '/config';
|
||||
sessionService = new SessionService(configDir);
|
||||
sessionService = new SessionService();
|
||||
});
|
||||
|
||||
it('should connect to immich', async () => {
|
||||
|
|
|
@ -3,7 +3,6 @@ import yaml from 'yaml';
|
|||
import path from 'node:path';
|
||||
import { ImmichApi } from '../api/client';
|
||||
import { LoginError } from '../cores/errors/login-error';
|
||||
import { config } from 'node:process';
|
||||
import os from 'os';
|
||||
|
||||
export class SessionService {
|
||||
|
@ -11,8 +10,9 @@ export class SessionService {
|
|||
readonly authPath!: string;
|
||||
private api!: ImmichApi;
|
||||
|
||||
constructor() {
|
||||
const configDir = process.env.IMMICH_CONFIG_DIR;
|
||||
constructor(configDir?: string) {
|
||||
if (!configDir) {
|
||||
configDir = process.env.IMMICH_CONFIG_DIR;
|
||||
|
||||
if (!configDir) {
|
||||
const userHomeDir = os.homedir();
|
||||
|
@ -20,6 +20,9 @@ export class SessionService {
|
|||
} else {
|
||||
this.configDir = configDir;
|
||||
}
|
||||
} else {
|
||||
this.configDir = configDir;
|
||||
}
|
||||
|
||||
this.authPath = path.join(this.configDir, 'auth.yml');
|
||||
}
|
||||
|
|
|
@ -1,11 +1,5 @@
|
|||
import {
|
||||
APIKeyCreateResponseDto,
|
||||
AuthDeviceResponseDto,
|
||||
LoginCredentialDto,
|
||||
LoginResponseDto,
|
||||
UserResponseDto,
|
||||
} from '@app/domain';
|
||||
import { adminSignupStub, apiKeyCreateStub, loginResponseStub, loginStub } from '@test';
|
||||
import { APIKeyCreateResponseDto } from '@app/domain';
|
||||
import { apiKeyCreateStub } from '@test';
|
||||
import request from 'supertest';
|
||||
|
||||
export const apiKeyApi = {
|
||||
|
|
|
@ -13,7 +13,7 @@ describe(`${LibraryController.name} (e2e)`, () => {
|
|||
let admin: LoginResponseDto;
|
||||
|
||||
beforeAll(async () => {
|
||||
server = await testApp.create({ jobs: true, listen: false });
|
||||
[server] = await testApp.create({ jobs: true });
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
|
|
|
@ -79,7 +79,7 @@ export const testApp = {
|
|||
.compile();
|
||||
|
||||
app = await moduleFixture.createNestApplication().init();
|
||||
app.listen(0);
|
||||
await app.listen(0);
|
||||
|
||||
if (jobs) {
|
||||
await app.get(AppService).init();
|
||||
|
|
Loading…
Reference in a new issue