Skip to content

Commit

Permalink
test: skip load url test
Browse files Browse the repository at this point in the history
  • Loading branch information
yisibl committed Mar 6, 2024
1 parent b04e6a7 commit f4751cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __test__/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Resvg, renderAsync } from '../index'

import { jimpToRgbaPixels } from './helper'

test('Use href to load a JPG image without alpha', async (t) => {
test.skip('Use href to load a JPG image without alpha', async (t) => {
const imgUrl = 'https://wd.imgix.net/image/kheDArv5csY6rvQUJDbWRscckLr1/De5peVXJZz3uSEmmVeYJ.png?w=500'
const svg = `<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<image href="${imgUrl}" width="500" height="250"/>
Expand Down
2 changes: 1 addition & 1 deletion __test__/wasm.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test.before(async () => {
await initWasm(fs.readFile(join(__dirname, '../wasm/index_bg.wasm')))
})

test('Use href to load a JPG image without alpha', async (t) => {
test.skip('Use href to load a JPG image without alpha', async (t) => {
const imgUrl = 'https://wd.imgix.net/image/kheDArv5csY6rvQUJDbWRscckLr1/De5peVXJZz3uSEmmVeYJ.png?w=500'
const svg = `<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<image href="${imgUrl}" width="500" height="250"/>
Expand Down

0 comments on commit f4751cf

Please sign in to comment.