From 8e6834da024f0eb15bc7af085b04fdf648d8b10d Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 19 Jul 2018 22:36:45 +0200 Subject: [PATCH] fix(core): export formData --- test/test.ts | 4 ++++ ts/index.ts | 1 + 2 files changed, 5 insertions(+) diff --git a/test/test.ts b/test/test.ts index 0c57d0e..2140c2f 100644 --- a/test/test.ts +++ b/test/test.ts @@ -32,4 +32,8 @@ tap.skip.test('should deal with unix socks', async () => { console.log(socketResponse.body); }); +tap.skip.test('should correctly upload a file using formData', async () => { + +}) + tap.start(); diff --git a/ts/index.ts b/ts/index.ts index b1e8d20..ccac686 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -3,3 +3,4 @@ export { ISmartRequestOptions } from './smartrequest.interfaces'; export * from './smartrequest.jsonrest'; export * from './smartrequest.binaryrest'; +export * from './smartrequest.formdata';