From 213c895dc6b36e42a4b037da366df24a608cee63 Mon Sep 17 00:00:00 2001 From: Thiago Saife Rodrigues Date: Tue, 26 Dec 2023 14:27:49 -0300 Subject: [PATCH] feat(int-1031): Add customFetch method to Storyblok class - Update test file --- tests/customFetch.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/customFetch.test.js b/tests/customFetch.test.js index 4b152989..7ce883c2 100644 --- a/tests/customFetch.test.js +++ b/tests/customFetch.test.js @@ -15,11 +15,11 @@ const generateJibberishWord = (length) => { describe('customFetch', () => { let client - const url = `spaces/${$VITE_SPACE_ID}/stories` + const url = `spaces/${process.env.VITE_SPACE_ID}/stories` beforeEach(() => { client = new StoryblokClient({ - oauthToken: $VITE_OAUTH_TOKEN, + oauthToken: process.env.VITE_OAUTH_TOKEN, }) })