@testspectra/cli 1.0.28 → 1.0.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/commands/add.js +4 -6
  2. package/dist/commands/init.js +13 -18
  3. package/dist/types/generator.js +73 -71
  4. package/package.json +1 -1
  5. package/templates/default/tsconfig.json +1 -15
  6. package/templates/{nx/modules/auth/e2e/tsconfig.json → default/tsconfig.spectra.json} +7 -8
  7. package/templates/nx/modules/auth/e2e/project.json +3 -4
  8. package/templates/nx/modules/catalog/e2e/project.json +3 -4
  9. package/templates/nx/package.json +1 -1
  10. package/templates/nx/shared/testing/page-objects/NavigationBar/common.ts +2 -2
  11. package/templates/nx/tsconfig.json +1 -3
  12. package/templates/nx/tsconfig.spectra.android.json +36 -0
  13. package/templates/nx/tsconfig.spectra.ios.json +36 -0
  14. package/templates/nx/{modules/catalog/e2e/tsconfig.json → tsconfig.spectra.json} +7 -8
  15. package/templates/nx/tsconfig.spectra.web.json +42 -0
  16. package/templates/nx/modules/auth/e2e/.testspectra/types/android.d.ts +0 -82
  17. package/templates/nx/modules/auth/e2e/.testspectra/types/common.d.ts +0 -80
  18. package/templates/nx/modules/auth/e2e/.testspectra/types/fixtures.d.ts +0 -10
  19. package/templates/nx/modules/auth/e2e/.testspectra/types/index.d.ts +0 -1
  20. package/templates/nx/modules/auth/e2e/.testspectra/types/ios.d.ts +0 -82
  21. package/templates/nx/modules/auth/e2e/.testspectra/types/mobile.d.ts +0 -82
  22. package/templates/nx/modules/auth/e2e/.testspectra/types/web.d.ts +0 -82
  23. package/templates/nx/modules/auth/e2e/tsconfig.android.json +0 -39
  24. package/templates/nx/modules/auth/e2e/tsconfig.android.tsbuildinfo +0 -1
  25. package/templates/nx/modules/auth/e2e/tsconfig.ios.json +0 -39
  26. package/templates/nx/modules/auth/e2e/tsconfig.ios.tsbuildinfo +0 -1
  27. package/templates/nx/modules/auth/e2e/tsconfig.web.json +0 -45
  28. package/templates/nx/modules/auth/e2e/tsconfig.web.tsbuildinfo +0 -1
  29. package/templates/nx/modules/catalog/e2e/.testspectra/types/android.d.ts +0 -82
  30. package/templates/nx/modules/catalog/e2e/.testspectra/types/common.d.ts +0 -80
  31. package/templates/nx/modules/catalog/e2e/.testspectra/types/fixtures.d.ts +0 -10
  32. package/templates/nx/modules/catalog/e2e/.testspectra/types/index.d.ts +0 -1
  33. package/templates/nx/modules/catalog/e2e/.testspectra/types/ios.d.ts +0 -82
  34. package/templates/nx/modules/catalog/e2e/.testspectra/types/mobile.d.ts +0 -82
  35. package/templates/nx/modules/catalog/e2e/.testspectra/types/web.d.ts +0 -82
  36. package/templates/nx/modules/catalog/e2e/tsconfig.android.json +0 -39
  37. package/templates/nx/modules/catalog/e2e/tsconfig.android.tsbuildinfo +0 -1
  38. package/templates/nx/modules/catalog/e2e/tsconfig.ios.json +0 -39
  39. package/templates/nx/modules/catalog/e2e/tsconfig.ios.tsbuildinfo +0 -1
  40. package/templates/nx/modules/catalog/e2e/tsconfig.web.json +0 -45
  41. package/templates/nx/modules/catalog/e2e/tsconfig.web.tsbuildinfo +0 -1
  42. package/templates/nx/shared/testing/tsconfig.json +0 -18
  43. package/templates/nx/shared/testing/tsconfig.tsbuildinfo +0 -1
  44. /package/templates/default/{tsconfig.android.json → tsconfig.spectra.android.json} +0 -0
  45. /package/templates/default/{tsconfig.ios.json → tsconfig.spectra.ios.json} +0 -0
  46. /package/templates/default/{tsconfig.web.json → tsconfig.spectra.web.json} +0 -0
@@ -1,80 +0,0 @@
1
- // Auto-generated ambient declarations for TestSpectra [COMMON]
2
- // Do not edit manually. Run 'spectra watch' or let the Language Service manage this.
3
-
4
- /// <reference types="@wdio/globals/types" />
5
- /// <reference types="@wdio/mocha-framework" />
6
- /// <reference path="./fixtures.d.ts" />
7
-
8
- declare namespace WebdriverIO {
9
- export interface InterceptFixtureOptions {
10
- statusCode?: number;
11
- headers?: Record<string, string>;
12
- }
13
- export interface InterceptFixtureObject<TData = unknown> {
14
- statusCode?: number;
15
- body: TData;
16
- headers?: Record<string, string>;
17
- }
18
- export type InterceptInput<TData = unknown> = InterceptFixtureObject<TData> | TData | string;
19
- interface Mock {
20
- respondWith<TData = unknown>(fixture: InterceptInput<TData>, options?: InterceptFixtureOptions): Promise<void>;
21
- }
22
- interface Browser {
23
- intercept<TData = unknown>(path: string, method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH', fixture?: InterceptInput<TData>, options?: InterceptFixtureOptions): Promise<Mock>;
24
- shouldHaveUrl(expectedUrl: string): Promise<void>;
25
- shouldContainUrl(expectedUrl: string): Promise<void>;
26
- shouldHaveTitle(expectedTitle: string): Promise<void>;
27
- shouldContainTitle(expectedTitle: string): Promise<void>;
28
- }
29
- interface Element {
30
- shouldBeVisible(): Promise<Element>;
31
- shouldNotBeVisible(): Promise<Element>;
32
- shouldExist(): Promise<Element>;
33
- shouldNotExist(): Promise<Element>;
34
- shouldBeEnabled(): Promise<Element>;
35
- shouldBeDisabled(): Promise<Element>;
36
- shouldBeSelected(): Promise<Element>;
37
- shouldBeChecked(): Promise<Element>;
38
- shouldHaveValue(expectedValue: string): Promise<Element>;
39
- shouldContainValue(expectedValue: string): Promise<Element>;
40
- shouldHaveText(expectedText: string): Promise<Element>;
41
- shouldContainText(expectedText: string): Promise<Element>;
42
- shouldHaveClass(className: string): Promise<Element>;
43
- shouldHaveAttribute(attributeName: string, expectedValue?: string): Promise<Element>;
44
- }
45
- }
46
-
47
- interface Promise<T> {
48
- shouldBeVisible(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
49
- shouldNotBeVisible(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
50
- shouldExist(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
51
- shouldNotExist(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
52
- shouldBeEnabled(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
53
- shouldBeDisabled(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
54
- shouldBeSelected(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
55
- shouldBeChecked(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
56
- shouldHaveValue(this: Promise<WebdriverIO.Element>, expectedValue: string): Promise<WebdriverIO.Element>;
57
- shouldContainValue(this: Promise<WebdriverIO.Element>, expectedValue: string): Promise<WebdriverIO.Element>;
58
- shouldHaveText(this: Promise<WebdriverIO.Element>, expectedText: string): Promise<WebdriverIO.Element>;
59
- shouldContainText(this: Promise<WebdriverIO.Element>, expectedText: string): Promise<WebdriverIO.Element>;
60
- shouldHaveClass(this: Promise<WebdriverIO.Element>, className: string): Promise<WebdriverIO.Element>;
61
- shouldHaveAttribute(this: Promise<WebdriverIO.Element>, attributeName: string, expectedValue?: string): Promise<WebdriverIO.Element>;
62
- }
63
-
64
- declare const SettingsPage: typeof import('../../page-objects/SettingsPage/common.js').default;
65
- declare const NavigationBar: typeof import('../../../../../shared/testing/page-objects/NavigationBar/common.js').default;
66
-
67
- interface TestSpectraActions extends Omit<typeof import('@testspectra/cli').Spectra, ''> {
68
- applyDiscount: (...args: any[]) => Promise<any>;
69
- verifyOtp: (...args: any[]) => Promise<any>;
70
- dismissBanner: (typeof import('../../../../../shared/testing/actions/dismissBanner/common.action.js') extends { default: infer T } ? T : typeof import('../../../../../shared/testing/actions/dismissBanner/common.action.js'));
71
- }
72
- declare const Spectra: TestSpectraActions;
73
-
74
- interface TestSpectraSteps {
75
- loginUser: (...args: any[]) => Promise<any>;
76
- searchProduct: (...args: any[]) => Promise<any>;
77
- loginAsAdmin: (typeof import('../../../../../shared/testing/steps/loginAsAdmin/common.step.js') extends { default: infer T } ? T : typeof import('../../../../../shared/testing/steps/loginAsAdmin/common.step.js'));
78
- }
79
- declare const Step: TestSpectraSteps;
80
-
@@ -1,10 +0,0 @@
1
- // Auto-generated ambient fixture declarations for TestSpectra
2
- // Do not edit manually. Run 'spectra watch' or let the Language Service manage this.
3
-
4
- interface TestSpectraFixtures {
5
- readonly couponCode: string;
6
- readonly searchQuery: string;
7
- readonly userData: string;
8
- readonly appConfig: string;
9
- }
10
- declare const Fixture: TestSpectraFixtures;
@@ -1 +0,0 @@
1
- /// <reference path="./common.d.ts" />
@@ -1,82 +0,0 @@
1
- // Auto-generated ambient declarations for TestSpectra [IOS]
2
- // Do not edit manually. Run 'spectra watch' or let the Language Service manage this.
3
-
4
- /// <reference types="@wdio/globals/types" />
5
- /// <reference types="@wdio/mocha-framework" />
6
- /// <reference path="./fixtures.d.ts" />
7
-
8
- declare namespace WebdriverIO {
9
- export interface InterceptFixtureOptions {
10
- statusCode?: number;
11
- headers?: Record<string, string>;
12
- }
13
- export interface InterceptFixtureObject<TData = unknown> {
14
- statusCode?: number;
15
- body: TData;
16
- headers?: Record<string, string>;
17
- }
18
- export type InterceptInput<TData = unknown> = InterceptFixtureObject<TData> | TData | string;
19
- interface Mock {
20
- respondWith<TData = unknown>(fixture: InterceptInput<TData>, options?: InterceptFixtureOptions): Promise<void>;
21
- }
22
- interface Browser {
23
- intercept<TData = unknown>(path: string, method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH', fixture?: InterceptInput<TData>, options?: InterceptFixtureOptions): Promise<Mock>;
24
- shouldHaveUrl(expectedUrl: string): Promise<void>;
25
- shouldContainUrl(expectedUrl: string): Promise<void>;
26
- shouldHaveTitle(expectedTitle: string): Promise<void>;
27
- shouldContainTitle(expectedTitle: string): Promise<void>;
28
- }
29
- interface Element {
30
- shouldBeVisible(): Promise<Element>;
31
- shouldNotBeVisible(): Promise<Element>;
32
- shouldExist(): Promise<Element>;
33
- shouldNotExist(): Promise<Element>;
34
- shouldBeEnabled(): Promise<Element>;
35
- shouldBeDisabled(): Promise<Element>;
36
- shouldBeSelected(): Promise<Element>;
37
- shouldBeChecked(): Promise<Element>;
38
- shouldHaveValue(expectedValue: string): Promise<Element>;
39
- shouldContainValue(expectedValue: string): Promise<Element>;
40
- shouldHaveText(expectedText: string): Promise<Element>;
41
- shouldContainText(expectedText: string): Promise<Element>;
42
- shouldHaveClass(className: string): Promise<Element>;
43
- shouldHaveAttribute(attributeName: string, expectedValue?: string): Promise<Element>;
44
- }
45
- }
46
-
47
- interface Promise<T> {
48
- shouldBeVisible(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
49
- shouldNotBeVisible(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
50
- shouldExist(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
51
- shouldNotExist(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
52
- shouldBeEnabled(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
53
- shouldBeDisabled(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
54
- shouldBeSelected(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
55
- shouldBeChecked(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
56
- shouldHaveValue(this: Promise<WebdriverIO.Element>, expectedValue: string): Promise<WebdriverIO.Element>;
57
- shouldContainValue(this: Promise<WebdriverIO.Element>, expectedValue: string): Promise<WebdriverIO.Element>;
58
- shouldHaveText(this: Promise<WebdriverIO.Element>, expectedText: string): Promise<WebdriverIO.Element>;
59
- shouldContainText(this: Promise<WebdriverIO.Element>, expectedText: string): Promise<WebdriverIO.Element>;
60
- shouldHaveClass(this: Promise<WebdriverIO.Element>, className: string): Promise<WebdriverIO.Element>;
61
- shouldHaveAttribute(this: Promise<WebdriverIO.Element>, attributeName: string, expectedValue?: string): Promise<WebdriverIO.Element>;
62
- }
63
-
64
- declare const LoginPage: typeof import('../../page-objects/LoginPage/mobile.js').default;
65
- declare const ProductPage: typeof import('../../page-objects/ProductPage/mobile.js').default;
66
- declare const SettingsPage: typeof import('../../page-objects/SettingsPage/common.js').default;
67
- declare const NavigationBar: typeof import('../../../../../shared/testing/page-objects/NavigationBar/common.js').default;
68
-
69
- interface TestSpectraActions extends Omit<typeof import('@testspectra/cli').Spectra, ''> {
70
- applyDiscount: (typeof import('../../actions/applyDiscount/mobile.action.js') extends { default: infer T } ? T : typeof import('../../actions/applyDiscount/mobile.action.js'));
71
- verifyOtp: (typeof import('../../actions/verifyOtp/mobile.action.js') extends { default: infer T } ? T : typeof import('../../actions/verifyOtp/mobile.action.js'));
72
- dismissBanner: (typeof import('../../../../../shared/testing/actions/dismissBanner/common.action.js') extends { default: infer T } ? T : typeof import('../../../../../shared/testing/actions/dismissBanner/common.action.js'));
73
- }
74
- declare const Spectra: TestSpectraActions;
75
-
76
- interface TestSpectraSteps {
77
- loginUser: (typeof import('../../steps/loginUser/mobile.step.js') extends { default: infer T } ? T : typeof import('../../steps/loginUser/mobile.step.js'));
78
- searchProduct: (typeof import('../../steps/searchProduct/mobile.step.js') extends { default: infer T } ? T : typeof import('../../steps/searchProduct/mobile.step.js'));
79
- loginAsAdmin: (typeof import('../../../../../shared/testing/steps/loginAsAdmin/common.step.js') extends { default: infer T } ? T : typeof import('../../../../../shared/testing/steps/loginAsAdmin/common.step.js'));
80
- }
81
- declare const Step: TestSpectraSteps;
82
-
@@ -1,82 +0,0 @@
1
- // Auto-generated ambient declarations for TestSpectra [MOBILE]
2
- // Do not edit manually. Run 'spectra watch' or let the Language Service manage this.
3
-
4
- /// <reference types="@wdio/globals/types" />
5
- /// <reference types="@wdio/mocha-framework" />
6
- /// <reference path="./fixtures.d.ts" />
7
-
8
- declare namespace WebdriverIO {
9
- export interface InterceptFixtureOptions {
10
- statusCode?: number;
11
- headers?: Record<string, string>;
12
- }
13
- export interface InterceptFixtureObject<TData = unknown> {
14
- statusCode?: number;
15
- body: TData;
16
- headers?: Record<string, string>;
17
- }
18
- export type InterceptInput<TData = unknown> = InterceptFixtureObject<TData> | TData | string;
19
- interface Mock {
20
- respondWith<TData = unknown>(fixture: InterceptInput<TData>, options?: InterceptFixtureOptions): Promise<void>;
21
- }
22
- interface Browser {
23
- intercept<TData = unknown>(path: string, method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH', fixture?: InterceptInput<TData>, options?: InterceptFixtureOptions): Promise<Mock>;
24
- shouldHaveUrl(expectedUrl: string): Promise<void>;
25
- shouldContainUrl(expectedUrl: string): Promise<void>;
26
- shouldHaveTitle(expectedTitle: string): Promise<void>;
27
- shouldContainTitle(expectedTitle: string): Promise<void>;
28
- }
29
- interface Element {
30
- shouldBeVisible(): Promise<Element>;
31
- shouldNotBeVisible(): Promise<Element>;
32
- shouldExist(): Promise<Element>;
33
- shouldNotExist(): Promise<Element>;
34
- shouldBeEnabled(): Promise<Element>;
35
- shouldBeDisabled(): Promise<Element>;
36
- shouldBeSelected(): Promise<Element>;
37
- shouldBeChecked(): Promise<Element>;
38
- shouldHaveValue(expectedValue: string): Promise<Element>;
39
- shouldContainValue(expectedValue: string): Promise<Element>;
40
- shouldHaveText(expectedText: string): Promise<Element>;
41
- shouldContainText(expectedText: string): Promise<Element>;
42
- shouldHaveClass(className: string): Promise<Element>;
43
- shouldHaveAttribute(attributeName: string, expectedValue?: string): Promise<Element>;
44
- }
45
- }
46
-
47
- interface Promise<T> {
48
- shouldBeVisible(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
49
- shouldNotBeVisible(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
50
- shouldExist(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
51
- shouldNotExist(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
52
- shouldBeEnabled(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
53
- shouldBeDisabled(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
54
- shouldBeSelected(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
55
- shouldBeChecked(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
56
- shouldHaveValue(this: Promise<WebdriverIO.Element>, expectedValue: string): Promise<WebdriverIO.Element>;
57
- shouldContainValue(this: Promise<WebdriverIO.Element>, expectedValue: string): Promise<WebdriverIO.Element>;
58
- shouldHaveText(this: Promise<WebdriverIO.Element>, expectedText: string): Promise<WebdriverIO.Element>;
59
- shouldContainText(this: Promise<WebdriverIO.Element>, expectedText: string): Promise<WebdriverIO.Element>;
60
- shouldHaveClass(this: Promise<WebdriverIO.Element>, className: string): Promise<WebdriverIO.Element>;
61
- shouldHaveAttribute(this: Promise<WebdriverIO.Element>, attributeName: string, expectedValue?: string): Promise<WebdriverIO.Element>;
62
- }
63
-
64
- declare const LoginPage: typeof import('../../page-objects/LoginPage/mobile.js').default;
65
- declare const ProductPage: typeof import('../../page-objects/ProductPage/mobile.js').default;
66
- declare const SettingsPage: typeof import('../../page-objects/SettingsPage/common.js').default;
67
- declare const NavigationBar: typeof import('../../../../../shared/testing/page-objects/NavigationBar/common.js').default;
68
-
69
- interface TestSpectraActions extends Omit<typeof import('@testspectra/cli').Spectra, ''> {
70
- applyDiscount: (typeof import('../../actions/applyDiscount/mobile.action.js') extends { default: infer T } ? T : typeof import('../../actions/applyDiscount/mobile.action.js'));
71
- verifyOtp: (typeof import('../../actions/verifyOtp/mobile.action.js') extends { default: infer T } ? T : typeof import('../../actions/verifyOtp/mobile.action.js'));
72
- dismissBanner: (typeof import('../../../../../shared/testing/actions/dismissBanner/common.action.js') extends { default: infer T } ? T : typeof import('../../../../../shared/testing/actions/dismissBanner/common.action.js'));
73
- }
74
- declare const Spectra: TestSpectraActions;
75
-
76
- interface TestSpectraSteps {
77
- loginUser: (typeof import('../../steps/loginUser/mobile.step.js') extends { default: infer T } ? T : typeof import('../../steps/loginUser/mobile.step.js'));
78
- searchProduct: (typeof import('../../steps/searchProduct/mobile.step.js') extends { default: infer T } ? T : typeof import('../../steps/searchProduct/mobile.step.js'));
79
- loginAsAdmin: (typeof import('../../../../../shared/testing/steps/loginAsAdmin/common.step.js') extends { default: infer T } ? T : typeof import('../../../../../shared/testing/steps/loginAsAdmin/common.step.js'));
80
- }
81
- declare const Step: TestSpectraSteps;
82
-
@@ -1,82 +0,0 @@
1
- // Auto-generated ambient declarations for TestSpectra [WEB]
2
- // Do not edit manually. Run 'spectra watch' or let the Language Service manage this.
3
-
4
- /// <reference types="@wdio/globals/types" />
5
- /// <reference types="@wdio/mocha-framework" />
6
- /// <reference path="./fixtures.d.ts" />
7
-
8
- declare namespace WebdriverIO {
9
- export interface InterceptFixtureOptions {
10
- statusCode?: number;
11
- headers?: Record<string, string>;
12
- }
13
- export interface InterceptFixtureObject<TData = unknown> {
14
- statusCode?: number;
15
- body: TData;
16
- headers?: Record<string, string>;
17
- }
18
- export type InterceptInput<TData = unknown> = InterceptFixtureObject<TData> | TData | string;
19
- interface Mock {
20
- respondWith<TData = unknown>(fixture: InterceptInput<TData>, options?: InterceptFixtureOptions): Promise<void>;
21
- }
22
- interface Browser {
23
- intercept<TData = unknown>(path: string, method: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH', fixture?: InterceptInput<TData>, options?: InterceptFixtureOptions): Promise<Mock>;
24
- shouldHaveUrl(expectedUrl: string): Promise<void>;
25
- shouldContainUrl(expectedUrl: string): Promise<void>;
26
- shouldHaveTitle(expectedTitle: string): Promise<void>;
27
- shouldContainTitle(expectedTitle: string): Promise<void>;
28
- }
29
- interface Element {
30
- shouldBeVisible(): Promise<Element>;
31
- shouldNotBeVisible(): Promise<Element>;
32
- shouldExist(): Promise<Element>;
33
- shouldNotExist(): Promise<Element>;
34
- shouldBeEnabled(): Promise<Element>;
35
- shouldBeDisabled(): Promise<Element>;
36
- shouldBeSelected(): Promise<Element>;
37
- shouldBeChecked(): Promise<Element>;
38
- shouldHaveValue(expectedValue: string): Promise<Element>;
39
- shouldContainValue(expectedValue: string): Promise<Element>;
40
- shouldHaveText(expectedText: string): Promise<Element>;
41
- shouldContainText(expectedText: string): Promise<Element>;
42
- shouldHaveClass(className: string): Promise<Element>;
43
- shouldHaveAttribute(attributeName: string, expectedValue?: string): Promise<Element>;
44
- }
45
- }
46
-
47
- interface Promise<T> {
48
- shouldBeVisible(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
49
- shouldNotBeVisible(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
50
- shouldExist(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
51
- shouldNotExist(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
52
- shouldBeEnabled(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
53
- shouldBeDisabled(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
54
- shouldBeSelected(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
55
- shouldBeChecked(this: Promise<WebdriverIO.Element>): Promise<WebdriverIO.Element>;
56
- shouldHaveValue(this: Promise<WebdriverIO.Element>, expectedValue: string): Promise<WebdriverIO.Element>;
57
- shouldContainValue(this: Promise<WebdriverIO.Element>, expectedValue: string): Promise<WebdriverIO.Element>;
58
- shouldHaveText(this: Promise<WebdriverIO.Element>, expectedText: string): Promise<WebdriverIO.Element>;
59
- shouldContainText(this: Promise<WebdriverIO.Element>, expectedText: string): Promise<WebdriverIO.Element>;
60
- shouldHaveClass(this: Promise<WebdriverIO.Element>, className: string): Promise<WebdriverIO.Element>;
61
- shouldHaveAttribute(this: Promise<WebdriverIO.Element>, attributeName: string, expectedValue?: string): Promise<WebdriverIO.Element>;
62
- }
63
-
64
- declare const LoginPage: typeof import('../../page-objects/LoginPage/web.js').default;
65
- declare const ProductPage: typeof import('../../page-objects/ProductPage/web.js').default;
66
- declare const SettingsPage: typeof import('../../page-objects/SettingsPage/common.js').default;
67
- declare const NavigationBar: typeof import('../../../../../shared/testing/page-objects/NavigationBar/common.js').default;
68
-
69
- interface TestSpectraActions extends Omit<typeof import('@testspectra/cli').Spectra, ''> {
70
- applyDiscount: (typeof import('../../actions/applyDiscount/web.action.js') extends { default: infer T } ? T : typeof import('../../actions/applyDiscount/web.action.js'));
71
- verifyOtp: (typeof import('../../actions/verifyOtp/web.action.js') extends { default: infer T } ? T : typeof import('../../actions/verifyOtp/web.action.js'));
72
- dismissBanner: (typeof import('../../../../../shared/testing/actions/dismissBanner/common.action.js') extends { default: infer T } ? T : typeof import('../../../../../shared/testing/actions/dismissBanner/common.action.js'));
73
- }
74
- declare const Spectra: TestSpectraActions;
75
-
76
- interface TestSpectraSteps {
77
- loginUser: (typeof import('../../steps/loginUser/web.step.js') extends { default: infer T } ? T : typeof import('../../steps/loginUser/web.step.js'));
78
- searchProduct: (typeof import('../../steps/searchProduct/web.step.js') extends { default: infer T } ? T : typeof import('../../steps/searchProduct/web.step.js'));
79
- loginAsAdmin: (typeof import('../../../../../shared/testing/steps/loginAsAdmin/common.step.js') extends { default: infer T } ? T : typeof import('../../../../../shared/testing/steps/loginAsAdmin/common.step.js'));
80
- }
81
- declare const Step: TestSpectraSteps;
82
-
@@ -1,39 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2022",
4
- "module": "NodeNext",
5
- "moduleResolution": "NodeNext",
6
- "composite": true,
7
- "noEmit": true,
8
- "skipLibCheck": true,
9
- "strict": true,
10
- "types": ["node", "@wdio/globals/types", "@wdio/mocha-framework"]
11
- },
12
- "include": [
13
- ".testspectra/types/android.d.ts",
14
- ".testspectra/types/fixtures.d.ts",
15
- "page-objects/**/*.ts",
16
- "steps/**/*.ts",
17
- "actions/**/*.ts",
18
- "global-hooks/**/*.ts",
19
- "specs/**/hooks/**/*.ts",
20
- "specs/**/*.ts",
21
- "spectra.config.ts"
22
- ],
23
- "exclude": [
24
- "node_modules",
25
- "dist",
26
- "page-objects/**/web.ts",
27
- "page-objects/**/ios.ts",
28
- "steps/**/web.step.ts",
29
- "steps/**/ios.step.ts",
30
- "actions/**/web.action.ts",
31
- "actions/**/ios.action.ts",
32
- "global-hooks/**/web.hook.ts",
33
- "global-hooks/**/ios.hook.ts",
34
- "specs/**/hooks/**/web.hook.ts",
35
- "specs/**/hooks/**/ios.hook.ts",
36
- "specs/**/web.test.ts",
37
- "specs/**/ios.test.ts"
38
- ]
39
- }
@@ -1 +0,0 @@
1
- {"fileNames":["../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.full.d.ts","./.testspectra/types/fixtures.d.ts","./node_modules/@wdio/globals/types.d.ts","./node_modules/@wdio/mocha-framework/build/types.d.ts","./node_modules/@wdio/mocha-framework/build/index.d.ts","./page-objects/loginpage/mobile.ts","./page-objects/productpage/mobile.ts","./page-objects/settingspage/common.ts","../../../shared/testing/page-objects/navigationbar/common.ts","./node_modules/@testspectra/cli/node_modules/commander/typings/index.d.ts","./node_modules/@testspectra/cli/node_modules/commander/typings/esm.d.mts","./node_modules/@testspectra/cli/dist/config/schema.d.ts","./node_modules/@testspectra/cli/dist/config/loader.d.ts","./node_modules/@testspectra/cli/dist/types/generator.d.ts","./node_modules/@testspectra/cli/node_modules/@testspectra/matchers/dist/types.d.ts","./node_modules/@testspectra/cli/node_modules/@testspectra/matchers/dist/matchers.d.ts","./node_modules/@testspectra/cli/node_modules/@testspectra/matchers/dist/runner/single.d.ts","./node_modules/@testspectra/cli/node_modules/@testspectra/matchers/dist/runner/collection.d.ts","./node_modules/@testspectra/cli/node_modules/@testspectra/matchers/dist/spectra.d.ts","./node_modules/@testspectra/cli/node_modules/@testspectra/matchers/dist/proto.d.ts","./node_modules/@testspectra/cli/node_modules/@testspectra/matchers/dist/index.d.ts","./node_modules/@testspectra/cli/node_modules/typescript/lib/typescript.d.ts","./node_modules/@testspectra/cli/dist/plugin.d.ts","./node_modules/@testspectra/cli/dist/index.d.ts","./actions/applydiscount/mobile.action.ts","./actions/verifyotp/mobile.action.ts","../../../shared/testing/actions/dismissbanner/common.action.ts","./steps/loginuser/mobile.step.ts","./steps/searchproduct/mobile.step.ts","../../../shared/testing/steps/loginasadmin/common.step.ts","./.testspectra/types/android.d.ts","./global-hooks/before.web.hook.ts","./specs/auth/hooks/before.android.hook.ts","./specs/auth/hooks/before.ios.hook.ts","./specs/auth/hooks/before.web.hook.ts","./specs/product/hooks/before.web.hook.ts","./specs/auth/tc-auth-01/android.test.ts","./specs/auth/tc-auth-02/android.test.ts","./specs/product/tc-prod-01/mobile.test.ts","./specs/product/tc-prod-02/mobile.test.ts","./specs/settings/tc-set-01/common.test.ts","./spectra.config.ts","./node_modules/@types/node/compatibility/disposable.d.ts","./node_modules/@types/node/compatibility/indexable.d.ts","./node_modules/@types/node/compatibility/iterators.d.ts","./node_modules/@types/node/compatibility/index.d.ts","./node_modules/@types/node/globals.typedarray.d.ts","./node_modules/@types/node/buffer.buffer.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/web-globals/abortcontroller.d.ts","./node_modules/@types/node/web-globals/domexception.d.ts","./node_modules/@types/node/web-globals/events.d.ts","./node_modules/@types/node/web-globals/fetch.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.d.ts","./node_modules/@types/node/async_hooks.d.ts","./node_modules/@types/node/buffer.d.ts","./node_modules/@types/node/child_process.d.ts","./node_modules/@types/node/cluster.d.ts","./node_modules/@types/node/console.d.ts","./node_modules/@types/node/constants.d.ts","./node_modules/@types/node/crypto.d.ts","./node_modules/@types/node/dgram.d.ts","./node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.d.ts","./node_modules/@types/node/domain.d.ts","./node_modules/@types/node/events.d.ts","./node_modules/@types/node/fs.d.ts","./node_modules/@types/node/fs/promises.d.ts","./node_modules/@types/node/http.d.ts","./node_modules/@types/node/http2.d.ts","./node_modules/@types/node/https.d.ts","./node_modules/@types/node/inspector.generated.d.ts","./node_modules/@types/node/module.d.ts","./node_modules/@types/node/net.d.ts","./node_modules/@types/node/os.d.ts","./node_modules/@types/node/path.d.ts","./node_modules/@types/node/perf_hooks.d.ts","./node_modules/@types/node/process.d.ts","./node_modules/@types/node/punycode.d.ts","./node_modules/@types/node/querystring.d.ts","./node_modules/@types/node/readline.d.ts","./node_modules/@types/node/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/sea.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.d.ts","./node_modules/@types/node/tls.d.ts","./node_modules/@types/node/trace_events.d.ts","./node_modules/@types/node/tty.d.ts","./node_modules/@types/node/url.d.ts","./node_modules/@types/node/util.d.ts","./node_modules/@types/node/v8.d.ts","./node_modules/@types/node/vm.d.ts","./node_modules/@types/node/wasi.d.ts","./node_modules/@types/node/worker_threads.d.ts","./node_modules/@types/node/zlib.d.ts","./node_modules/@types/node/index.d.ts"],"fileIdsList":[[64,65,67,68,69,70,71,86,87,88,89,90,91,92,110,119],[110,119],[74,110,119],[73,74,75,76,83,85,110,119],[84,110,119],[77,78,79,80,81,82,110,119],[77,110,119],[77,79,110,119],[77,79,80,110,119],[72,110,119],[110,116,119],[110,118,119],[119],[110,119,124,152],[110,119,120,125,130,138,149,160],[110,119,120,121,130,138],[105,106,107,110,119],[110,119,122,161],[110,119,123,124,131,139],[110,119,124,149,157],[110,119,125,127,130,138],[110,118,119,126],[110,119,127,128],[110,119,129,130],[110,118,119,130],[110,119,130,131,132,149,160],[110,119,130,131,132,145,149,152],[110,119,127,130,133,138,149,160],[110,119,130,131,133,134,138,149,157,160],[110,119,133,135,149,157,160],[108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166],[110,119,130,136],[110,119,137,160,165],[110,119,127,130,138,149],[110,119,139],[110,119,140],[110,118,119,141],[110,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166],[110,119,143],[110,119,144],[110,119,130,145,146],[110,119,145,147,161,163],[110,119,130,149,150,152],[110,119,151,152],[110,119,149,150],[110,119,152],[110,119,153],[110,116,119,149,154],[110,119,130,155,156],[110,119,155,156],[110,119,124,138,149,157],[110,119,158],[110,119,138,159],[110,119,133,144,160],[110,119,124,161],[110,119,149,162],[110,119,137,163],[110,119,164],[110,119,130,132,141,149,152,160,163,165],[110,119,149,166],[66,110,119,130],[86,110,119]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"cb3d295aedeeb51d5154615bdb2eff1691417cac021326b280dead897f7d5c10","affectsGlobalScope":true,"impliedFormat":99},{"version":"a361bcf26a354b14047e5457b7d5f0ad77512cbb25fd777439eed4f5971575fe","affectsGlobalScope":true,"impliedFormat":99},{"version":"0f15d56433289431b00350348be9ce53df3eabed8f727ec997fb5a1cf02d81a6","impliedFormat":99},{"version":"69e9ff1310b6e2490d5332274e48974f8ecd2d50db7f937a4f180d12f608c71a","affectsGlobalScope":true,"impliedFormat":99},{"version":"b6d5eed9aa144c2b7e333ffabd062b993bca5fbb5ad2264234476086563fc7dd","impliedFormat":99},{"version":"fee1e4e276ea26d7a5175b06479def7d863b73d5f35793a31f7c4e445970ac97","impliedFormat":99},{"version":"547aa2ec3d0423261e9bc648027b2f8fc7c8343e72a6f4290cf39eb9420b24d0","impliedFormat":99},{"version":"20c7f5f465478ffaa39f143d757c1734a879404463fe355946f433d131309868","impliedFormat":99},{"version":"a722a71d8f3cb0028857b12579c7eca55acc76bf34e5db7eaf6fe817b985f9c3","impliedFormat":1},{"version":"b124c0624b15412ace7d54644ade38d7a69db7e25488a1a4d2a8df6e11696538","impliedFormat":99},{"version":"d5a6e785bdd51b27f5af42723e267fb55634248026b6685de85a382d42f40fec","impliedFormat":99},{"version":"1da9eafa1d7539d32a3aed1822664d4775579e69df27ef0000abba915c5a39dc","impliedFormat":99},{"version":"2866925c64171c45b567ccc5bdb8ce09eb85a422ec114efaf0d03b41c08187cd","impliedFormat":99},{"version":"e6835caf7ac0d79ee328edfd76c6d98a734952ce15ab4c2a8faebd6984a83356","impliedFormat":99},{"version":"2edbd81cc7d514587f9aede4c2e4ab3d1f25dbd0ab724760303a15575fc6c4b5","impliedFormat":99},{"version":"799b7e9b965c8cc30980837823d6a3a41d9b54c2da8192e99015c5475a895a29","impliedFormat":99},{"version":"88e6e633d7ac596a658c9ac7bbc563725966efe55bc5573201ab0cf542bf698f","impliedFormat":99},{"version":"5510471a0f108fd39d13ef23b50651432ad41d656778b23f367d951d457cf377","impliedFormat":99},{"version":"7a55b691b73fc5287fef8cae7bd41bc89e3efc6bb3fb13ab44750732b516caae","affectsGlobalScope":true,"impliedFormat":99},{"version":"29f4af0764aa86cc41438832ae0f5c69f6d57cb3cc90b0b2c351adefe239bb1d","impliedFormat":99},{"version":"e134052a6b1ded61693b4037f615dc72f14e2881e79c1ddbff6c514c8a516b05","impliedFormat":1},{"version":"4edee9b408b0eae62fca39db50486bf1fd7b941f52ed99d84280685bff9741cf","impliedFormat":99},{"version":"92e5441e165f6c71c6706b27c47c5e6570f5c3f79d3ac57b73669072439f21cf","impliedFormat":99},{"version":"8b3f9379d070f3c039d82ecdb79d3acb0c298de5626b0d55def9d68a63b3d2e7","impliedFormat":99},{"version":"8b6cba14fd2fb92169a3f6b1e8aec79ef19b5eb218d049ad6582fea027cb9405","impliedFormat":99},{"version":"868a55b3691ddd826ed682fea23428a65489cbf4aa50c5086bf5d2b2db9b6c54","impliedFormat":99},{"version":"4aa6cf1b560bd804d25df6ca9f0ad438c057809d96fe14d56ef137399d7d7f33","impliedFormat":99},{"version":"be26dc762dc398e4d841c4d3e59e41b56fdf08aaf18519124e5c6265f16529a3","impliedFormat":99},{"version":"0919276c0fadd81cfc6317b0a47f2c562f992b4394cd3df3da2a6ed3dd693c44","impliedFormat":99},{"version":"9d12f60c64589b1669d7f78b43894c4dac882e0bd9c588fa9318d0615f85c8e5","affectsGlobalScope":true,"impliedFormat":99},{"version":"004015e3b6533017da54de36cc5a273107435f86a3e25718cddc486d48f38692","impliedFormat":99},{"version":"0c675e7821944a5f9d57b936ca35ac145863f1ca38154e7a686a50ea0f8f34f0","impliedFormat":99},{"version":"14f2674f82373b45ccc9782d81823432651069f148eeb79c4577e5373560c30a","impliedFormat":99},{"version":"1b33611d1a0e52b1ef3fdafb16d089b7d0ac5eb88b641e2ca24622f79dda0828","impliedFormat":99},{"version":"e1aeaa46e4d694808ae3ee3023c89a09827e766272d2607bf7e1b1c2e9352749","impliedFormat":99},{"version":"a1a3615fd7fe77d20590c0053f88226373c8ae5e982f67792dd72375480ffba2","impliedFormat":99},{"version":"4946fb3d4ca6f0b4d12d2c74b7b305d4b1394f5035d7ced55d107c0a86cb447e","impliedFormat":99},{"version":"cc05d432b893c9b7a8e5cc6dc75365a9bc6966500b7a93ee963e3f58b2ef1d7e","impliedFormat":99},{"version":"c9cd05fcaedae40c106071537b6371d86094c3d7e0deec5bb061086919753f2b","impliedFormat":99},{"version":"697561c2d9083ce18ff465eec5e39f871fefdae88457db9396b88cb8cb6cebea","impliedFormat":99},{"version":"e2a64fc16d3e5fcc47d75bbcff848ea19845f0754df4303ca3cf0454a653cbf6","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"1123a83f35cf56c97de746f0a7250012153c61a167e4a61668bf50e558162d14","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1}],"root":[64,[68,70],87,88,90,91,[93,104]],"options":{"composite":true,"module":199,"skipLibCheck":true,"strict":true,"target":9},"referencedMap":[[93,1],[64,2],[87,2],[88,2],[94,2],[75,3],[74,2],[86,4],[85,5],[76,2],[83,6],[78,7],[82,2],[80,8],[79,7],[81,9],[77,2],[73,10],[72,2],[84,2],[116,11],[117,11],[118,12],[110,13],[119,14],[120,15],[121,16],[105,2],[108,17],[106,2],[107,2],[122,18],[123,19],[124,20],[125,21],[126,22],[127,23],[128,23],[129,24],[130,25],[131,26],[132,27],[111,2],[109,2],[133,28],[134,29],[135,30],[167,31],[136,32],[137,33],[138,34],[139,35],[140,36],[141,37],[142,38],[143,39],[144,40],[145,41],[146,41],[147,42],[148,2],[149,43],[151,44],[150,45],[152,46],[153,47],[154,48],[155,49],[156,50],[157,51],[158,52],[159,53],[160,54],[161,55],[162,56],[163,57],[164,58],[112,2],[113,2],[114,2],[115,2],[165,59],[166,60],[65,2],[67,61],[66,2],[68,2],[69,2],[70,2],[95,2],[96,2],[97,2],[99,2],[100,2],[98,2],[101,2],[102,2],[103,2],[104,62],[90,2],[91,2],[89,2],[71,2],[92,2],[61,2],[62,2],[12,2],[10,2],[11,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[63,2],[57,2],[58,2],[60,2],[59,2],[1,2],[14,2],[13,2]],"semanticDiagnosticsPerFile":[[68,[{"start":63,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":157,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":256,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":355,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":445,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304}]],[69,[{"start":63,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":156,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":249,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":344,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":440,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":531,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304}]],[70,[{"start":67,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":181,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":288,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304},{"start":396,"length":23,"messageText":"Cannot find name 'ChainablePromiseElement'.","category":1,"code":2304}]],[94,[{"start":125,"length":14,"code":2339,"category":1,"messageText":"Property 'maximizeWindow' does not exist on type 'Browser'."}]],[99,[{"start":0,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.","category":1,"code":2593}]],[100,[{"start":0,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.","category":1,"code":2593}]],[101,[{"start":0,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.","category":1,"code":2593}]],[102,[{"start":0,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.","category":1,"code":2593}]],[103,[{"start":0,"length":2,"messageText":"Cannot find name 'it'. Do you need to install type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in your tsconfig.","category":1,"code":2593}]]],"affectedFilesPendingEmit":[87,88,94,68,69,70,95,96,97,99,100,98,101,102,103,104,90,91,89,71,92],"emitSignatures":[68,69,70,71,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104],"version":"5.9.3"}
@@ -1,39 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2022",
4
- "module": "NodeNext",
5
- "moduleResolution": "NodeNext",
6
- "composite": true,
7
- "noEmit": true,
8
- "skipLibCheck": true,
9
- "strict": true,
10
- "types": ["node", "@wdio/globals/types", "@wdio/mocha-framework"]
11
- },
12
- "include": [
13
- ".testspectra/types/ios.d.ts",
14
- ".testspectra/types/fixtures.d.ts",
15
- "page-objects/**/*.ts",
16
- "steps/**/*.ts",
17
- "actions/**/*.ts",
18
- "global-hooks/**/*.ts",
19
- "specs/**/hooks/**/*.ts",
20
- "specs/**/*.ts",
21
- "spectra.config.ts"
22
- ],
23
- "exclude": [
24
- "node_modules",
25
- "dist",
26
- "page-objects/**/web.ts",
27
- "page-objects/**/android.ts",
28
- "steps/**/web.step.ts",
29
- "steps/**/android.step.ts",
30
- "actions/**/web.action.ts",
31
- "actions/**/android.action.ts",
32
- "global-hooks/**/web.hook.ts",
33
- "global-hooks/**/android.hook.ts",
34
- "specs/**/hooks/**/web.hook.ts",
35
- "specs/**/hooks/**/android.hook.ts",
36
- "specs/**/web.test.ts",
37
- "specs/**/android.test.ts"
38
- ]
39
- }