From 4ede5c70094263119ce90fcd2b8721acea3778a5 Mon Sep 17 00:00:00 2001 From: Jonas Gloning <34194370+jonasgloning@users.noreply.github.com> Date: Wed, 15 May 2024 22:51:49 +0200 Subject: [PATCH] chore(e2e): unblock `webdriverio@8.36` and above. `jasmine` types are no longer available by default https://app.renovatebot.com/package-diff?name=@wdio%2fjasmine-framework&from=8.35.1&to=8.36.0 --- e2e/tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/e2e/tsconfig.json b/e2e/tsconfig.json index 2efd5043e..e2b548483 100644 --- a/e2e/tsconfig.json +++ b/e2e/tsconfig.json @@ -47,7 +47,12 @@ // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ // "typeRoots": [], /* List of folders to include type definitions from. */ - "types": ["node", "@wdio/globals/types", "@wdio/jasmine-framework"], + "types": [ + "node", + "@wdio/globals/types", + "jasmine", + "@wdio/jasmine-framework" + ], "allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */, // "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */