Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
twlite committed Dec 17, 2023
1 parent 90f8a4d commit c2a98ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __test__/index.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ test('should vectorize image (simple)', async (t) => {
test('should vectorize raw pixels data', async (t) => {
const src = await readFile('./__test__/data/sample.png');
const raw = await new Transformer(src).rawPixels();
const result = await vectorizeRaw(raw, configCircle, {
const result = await vectorizeRaw(raw, {
height: 100,
width: 100,
});
}, configCircle);

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

Expand Down

0 comments on commit c2a98ff

Please sign in to comment.