From 5d45aea0f7e738f68cbf1ca567edde3bf5af3a64 Mon Sep 17 00:00:00 2001 From: Julian Martin Date: Thu, 11 May 2023 11:14:39 +0200 Subject: [PATCH] feat: change key --- playground/nuxt.config.ts | 2 +- tests/basic.test.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/playground/nuxt.config.ts b/playground/nuxt.config.ts index 35aa874..2778994 100644 --- a/playground/nuxt.config.ts +++ b/playground/nuxt.config.ts @@ -8,7 +8,7 @@ export default defineNuxtConfig({ disableLog: true, config: { notifyReleaseStages: ['staging', 'production', 'dev'], - apiKey: '7a923d8f26b1a5d5e74234fe982340fb', + apiKey: '317c3d7013a3dc4a9e152138bfe8c900', environment: process.env.NODE_ENV }, projectRoot: path.join(__dirname, '..') diff --git a/tests/basic.test.ts b/tests/basic.test.ts index 99ab2ce..46da18a 100644 --- a/tests/basic.test.ts +++ b/tests/basic.test.ts @@ -22,6 +22,7 @@ describe('basic usage', async () => { it('Renders Hello Nuxt', async () => { const result = await $fetch('/') + console.log(result) expect(result).toContain('apiKey:"317c3d7013a3dc4a9e152138bfe8c900"') })