From d65bc4b2e27fb5c148f937fbea379392071875c5 Mon Sep 17 00:00:00 2001 From: Ahash Sritharan Date: Sat, 23 Sep 2023 20:15:50 +0200 Subject: [PATCH] fix: fixed test --- tests/example.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/example.spec.ts b/tests/example.spec.ts index 444f4ea..b3e29a8 100644 --- a/tests/example.spec.ts +++ b/tests/example.spec.ts @@ -4,7 +4,7 @@ import { CRMConfig } from './auth.setup'; test.beforeEach(async ({ page }) => { test.setTimeout(60000); - await page.addInitScript({ path: 'build/dist/src/XrmEx.js' }); + await page.addInitScript({ path: 'build/src/XrmEx.js' }); var env: CRMConfig = JSON.parse(process.env.ENV_VAR_JSON); await page.goto(env.CONTACT_RECORD_URL); await page.getByLabel('First Name').waitFor({ state: 'visible' });