1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-12-07 23:23:49 +02:00

This reverts commit ae1309b011.

This commit is contained in:
gras
2024-04-03 21:17:03 +02:00
parent 7f68c827d8
commit dbcd14f5c7
6 changed files with 5 additions and 5 deletions

View File

@@ -36,8 +36,8 @@ describe('MetadataLoader', () => {
});
it('should load png with description', async () => {
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/title_caption/description.png'));
const expected = require(path.join(__dirname, '/../../../assets/title_caption/description.json'));
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/description.png'));
const expected = require(path.join(__dirname, '/../../../assets/description.json'));
expect(Utils.clone(data)).to.be.deep.equal(expected);
});
@@ -186,8 +186,8 @@ describe('MetadataLoader', () => {
expect(Utils.clone(data)).to.be.deep.equal(expected);
});
it('should load image with metadata saved by digikam', async () => {
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/title_caption/digikam.jpg'));
const expected = require(path.join(__dirname, '/../../../assets/title_caption/digikam.json'));
const data = await MetadataLoader.loadPhotoMetadata(path.join(__dirname, '/../../../assets/digikam.jpg'));
const expected = require(path.join(__dirname, '/../../../assets/digikam.json'));
expect(Utils.clone(data)).to.be.deep.equal(expected);
});