mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
fixing test
This commit is contained in:
parent
d035f167ee
commit
ad645feb43
@ -54,9 +54,9 @@ describe('Typeorm integration', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
const getDir = () => {
|
const getDir = (namePrefix: string = '') => {
|
||||||
const d = new DirectoryEntity();
|
const d = new DirectoryEntity();
|
||||||
d.name = 'test dir';
|
d.name = namePrefix + 'test dir';
|
||||||
d.path = '.';
|
d.path = '.';
|
||||||
d.lastModified = Date.now();
|
d.lastModified = Date.now();
|
||||||
d.lastScanned = null;
|
d.lastScanned = null;
|
||||||
@ -196,7 +196,7 @@ describe('Typeorm integration', () => {
|
|||||||
it('should open and close connection twice with media added ', async () => {
|
it('should open and close connection twice with media added ', async () => {
|
||||||
let conn = await SQLConnection.getConnection();
|
let conn = await SQLConnection.getConnection();
|
||||||
const dir = await conn.getRepository(DirectoryEntity).save(getDir());
|
const dir = await conn.getRepository(DirectoryEntity).save(getDir());
|
||||||
const dir2 = getDir();
|
const dir2 = getDir('dir2');
|
||||||
dir2.parent = dir;
|
dir2.parent = dir;
|
||||||
await conn.getRepository(DirectoryEntity).save(dir2);
|
await conn.getRepository(DirectoryEntity).save(dir2);
|
||||||
const photo = getPhoto();
|
const photo = getPhoto();
|
||||||
|
Loading…
Reference in New Issue
Block a user