1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

fixing test

This commit is contained in:
Patrik J. Braun 2018-12-09 12:01:40 +01:00
parent d035f167ee
commit ad645feb43

View File

@ -54,9 +54,9 @@ describe('Typeorm integration', () => {
});
const getDir = () => {
const getDir = (namePrefix: string = '') => {
const d = new DirectoryEntity();
d.name = 'test dir';
d.name = namePrefix + 'test dir';
d.path = '.';
d.lastModified = Date.now();
d.lastScanned = null;
@ -196,7 +196,7 @@ describe('Typeorm integration', () => {
it('should open and close connection twice with media added ', async () => {
let conn = await SQLConnection.getConnection();
const dir = await conn.getRepository(DirectoryEntity).save(getDir());
const dir2 = getDir();
const dir2 = getDir('dir2');
dir2.parent = dir;
await conn.getRepository(DirectoryEntity).save(dir2);
const photo = getPhoto();