Skip to content

Commit

Permalink
test: change url
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Aug 18, 2024
1 parent 88c6cc5 commit e248f4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ clients.forEach(({ constructor: microlink, target }) => {

const myFn = microlink(getTitle)

const result = await myFn('https://google.com', { force: true })
const result = await myFn('https://example.com', { force: true })

t.deepEqual(result, {
isFulfilled: true,
Expand All @@ -24,7 +24,7 @@ clients.forEach(({ constructor: microlink, target }) => {

const myFn = microlink(getTitle)

const result = await myFn('https://google.com', { force: true })
const result = await myFn('https://example.com', { force: true })

t.deepEqual(result, {
isFulfilled: true,
Expand All @@ -38,7 +38,7 @@ clients.forEach(({ constructor: microlink, target }) => {

const myFn = microlink(getTitle)

const result = await myFn('https://google.com', {
const result = await myFn('https://example.com', {
greetings: 'hello world',
force: true
})
Expand Down

0 comments on commit e248f4c

Please sign in to comment.