Skip to content

Commit c2a98ff

Browse files
committed
0.0.3
1 parent 90f8a4d commit c2a98ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__test__/index.spec.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ test('should vectorize image (simple)', async (t) => {
3939
test('should vectorize raw pixels data', async (t) => {
4040
const src = await readFile('./__test__/data/sample.png');
4141
const raw = await new Transformer(src).rawPixels();
42-
const result = await vectorizeRaw(raw, configCircle, {
42+
const result = await vectorizeRaw(raw, {
4343
height: 100,
4444
width: 100,
45-
});
45+
}, configCircle);
4646

4747
await writeFile('./__test__/data/result-raw.svg', result);
4848

0 commit comments

Comments
 (0)