From fcef5fcb6c140759d5cb68ca8e0a4be28c491340 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 19 Jun 2018 00:30:40 +0200 Subject: [PATCH] fix(scope): update scope --- test/test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.ts b/test/test.ts index ff81d82..201aeef 100644 --- a/test/test.ts +++ b/test/test.ts @@ -5,20 +5,20 @@ import { tap, expect } from 'tapbundle'; import * as smartrequest from '../ts/index'; tap.test('should request a html document over https', async () => { - await expect(smartrequest.get('https://encrypted.google.com/')) + await expect(smartrequest.getJson('https://encrypted.google.com/')) .to.eventually.property('body') .be.a('string'); }); tap.test('should request a JSON document over https', async () => { - await expect(smartrequest.get('https://jsonplaceholder.typicode.com/posts/1')) + await expect(smartrequest.getJson('https://jsonplaceholder.typicode.com/posts/1')) .to.eventually.property('body') .property('id') .equal(1); }); tap.test('should post a JSON document over http', async () => { - await expect(smartrequest.post('http://md5.jsontest.com/?text=example_text')) + await expect(smartrequest.postJson('http://md5.jsontest.com/?text=example_text')) .to.eventually.property('body') .property('md5') .equal('fa4c6baa0812e5b5c80ed8885e55a8a6');