We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1eb021 commit 825fa3aCopy full SHA for 825fa3a
test/index.mjs
@@ -3,7 +3,7 @@
3
import microlink from '@microlink/function'
4
import test from 'ava'
5
6
-const ENDPOINT = 'http://localhost:3000'
+const ENDPOINT = 'https://api.microlink.io'
7
8
test('interact with the page', async t => {
9
const getTitle = ({ page }) => page.title()
@@ -16,7 +16,7 @@ test('interact with the page', async t => {
16
t.is(result.value, 'Example Domain')
17
})
18
19
-test.only('interact with the response', async t => {
+test('interact with the response', async t => {
20
const getTitle = ({ response }) => response.status()
21
22
const myFn = microlink(getTitle, { endpoint: ENDPOINT })
0 commit comments