1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-07-15 01:24:25 +02:00

adding translation

This commit is contained in:
Patrik J. Braun
2018-03-29 20:30:23 -04:00
parent 148a2bb3d2
commit 9412fcba4d
33 changed files with 663 additions and 209 deletions

View File

@ -101,7 +101,7 @@ describe('SearchManager', () => {
await SQLConnection.close();
};
const teardownUpSqlDB = async () => {
const tearDownSqlDB = async () => {
await SQLConnection.close();
if (fs.existsSync(dbPath)) {
fs.unlinkSync(dbPath);
@ -116,7 +116,7 @@ describe('SearchManager', () => {
});
afterEach(async () => {
await teardownUpSqlDB();
await tearDownSqlDB();
});