From c051efaa304f76a5e6d762e4b23a562fe1e2b8d7 Mon Sep 17 00:00:00 2001 From: Ferdi Koomen Date: Thu, 11 Jun 2020 21:00:59 +0200 Subject: [PATCH] - Forgot to update snapshots --- test/__snapshots__/index.spec.js.snap | 30 +++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/test/__snapshots__/index.spec.js.snap b/test/__snapshots__/index.spec.js.snap index 9eccf61d..549ea24e 100644 --- a/test/__snapshots__/index.spec.js.snap +++ b/test/__snapshots__/index.spec.js.snap @@ -71,6 +71,7 @@ interface Config { BASE: string; VERSION: string; CLIENT: 'fetch' | 'xhr'; + WITH_CREDENTIALS: boolean; TOKEN: string; } @@ -78,6 +79,7 @@ export const OpenAPI: Config = { BASE: 'http://localhost:8080/api', VERSION: '9.0', CLIENT: 'fetch', + WITH_CREDENTIALS: false, TOKEN: '', };" `; @@ -229,9 +231,15 @@ export async function request(options: Readonly): Promise { @@ -2706,6 +2719,7 @@ interface Config { BASE: string; VERSION: string; CLIENT: 'fetch' | 'xhr'; + WITH_CREDENTIALS: boolean; TOKEN: string; } @@ -2713,6 +2727,7 @@ export const OpenAPI: Config = { BASE: '/api', VERSION: '1', CLIENT: 'fetch', + WITH_CREDENTIALS: false, TOKEN: '', };" `; @@ -2864,9 +2879,15 @@ export async function request(options: Readonly): Promise {