First commit
This commit is contained in:
29
node_modules/png-js/test/pixels.spec.js
generated
vendored
Normal file
29
node_modules/png-js/test/pixels.spec.js
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
const PNGNode = require('../png-node');
|
||||
const fs = require('fs');
|
||||
|
||||
const files = fs.readdirSync('test/images');
|
||||
|
||||
async function getPixels(Ctor, fileName) {
|
||||
const image = new Ctor(fs.readFileSync(`test/images/${fileName}`));
|
||||
return new Promise(resolve => {
|
||||
Ctor === PNGNode
|
||||
? image.decodePixels(resolve)
|
||||
: resolve(image.decodePixels());
|
||||
});
|
||||
}
|
||||
|
||||
describe('pixels', () => {
|
||||
describe('node', () => {
|
||||
test.each(files)('%s', async fileName => {
|
||||
const pixels = await getPixels(PNGNode, fileName);
|
||||
expect(pixels).toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
|
||||
describe('browser', () => {
|
||||
test.each(files)('%s', async fileName => {
|
||||
const pixels = await getPixels(PNG, fileName);
|
||||
expect(pixels).toMatchSnapshot();
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user