From 351b951a6ec123936b1d2dc3a2a559ee016941f0 Mon Sep 17 00:00:00 2001 From: Elias Hussary Date: Wed, 23 Dec 2020 08:43:58 -0500 Subject: [PATCH] test(sdk-js): fix failing test --- packages/sdk-js/tests/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sdk-js/tests/index.ts b/packages/sdk-js/tests/index.ts index e0a014a0cb..2992ff7e93 100644 --- a/packages/sdk-js/tests/index.ts +++ b/packages/sdk-js/tests/index.ts @@ -46,7 +46,7 @@ describe('DirectusSDK', () => { }); it('Defaults to the correct auth options', () => { - expect(directus['authOptions'].autoRefresh).to.be.true; + expect(directus['authOptions'].autoRefresh).to.be.false; expect(directus['authOptions'].mode).to.equal('cookie'); expect(directus['authOptions'].storage).to.be.instanceOf(MemoryStore); });