testit-adapter-codecept 1.1.2 → 1.1.4

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 (69) hide show
  1. package/README.md +180 -208
  2. package/build/bootstrap.d.ts +1 -1
  3. package/build/bootstrap.js +37 -34
  4. package/build/common/__tests/box.class.spec.d.ts +1 -1
  5. package/build/common/__tests/box.class.spec.js +15 -15
  6. package/build/common/__tests/test.utils.d.ts +4 -4
  7. package/build/common/__tests/test.utils.js +71 -71
  8. package/build/common/classes/box.class.d.ts +5 -5
  9. package/build/common/classes/box.class.js +18 -18
  10. package/build/common/classes/config.class.d.ts +6 -6
  11. package/build/common/classes/config.class.js +67 -67
  12. package/build/common/classes/logger.class.d.ts +9 -9
  13. package/build/common/classes/logger.class.js +28 -28
  14. package/build/common/classes/outcome.factory.d.ts +7 -7
  15. package/build/common/classes/outcome.factory.js +19 -19
  16. package/build/common/functions/compose.function.d.ts +1 -1
  17. package/build/common/functions/compose.function.js +5 -5
  18. package/build/common/functions/hash.function.d.ts +1 -1
  19. package/build/common/functions/hash.function.js +15 -15
  20. package/build/common/functions/humanize.function.d.ts +1 -1
  21. package/build/common/functions/humanize.function.js +7 -7
  22. package/build/common/functions/is-passed.function.d.ts +2 -2
  23. package/build/common/functions/is-passed.function.js +7 -7
  24. package/build/common/functions/to-iso-string.function.d.ts +1 -1
  25. package/build/common/functions/to-iso-string.function.js +10 -10
  26. package/build/common/functions/use-hash.function.d.ts +9 -9
  27. package/build/common/functions/use-hash.function.js +13 -13
  28. package/build/common/types/nullable.type.d.ts +1 -1
  29. package/build/common/types/nullable.type.js +2 -2
  30. package/build/helper.d.ts +9 -9
  31. package/build/helper.js +37 -37
  32. package/build/http/default-http-client.class.d.ts +22 -22
  33. package/build/http/default-http-client.class.js +123 -123
  34. package/build/http/http-client.errors.d.ts +7 -7
  35. package/build/http/http-client.errors.js +18 -18
  36. package/build/index.d.ts +2 -2
  37. package/build/index.js +18 -18
  38. package/build/jest.config.d.ts +7 -7
  39. package/build/jest.config.js +12 -12
  40. package/build/services/__tests/attachments.class.spec.d.ts +1 -1
  41. package/build/services/__tests/attachments.class.spec.js +23 -23
  42. package/build/services/__tests/runs.builder.spec.d.ts +1 -1
  43. package/build/services/__tests/runs.builder.spec.js +79 -79
  44. package/build/services/__tests/tests.builder.spec.d.ts +1 -1
  45. package/build/services/__tests/tests.builder.spec.js +32 -32
  46. package/build/services/attachments.service.d.ts +11 -11
  47. package/build/services/attachments.service.js +28 -28
  48. package/build/services/runs.builder.d.ts +10 -10
  49. package/build/services/runs.builder.js +65 -65
  50. package/build/services/tests.builder.d.ts +10 -10
  51. package/build/services/tests.builder.js +57 -55
  52. package/build/strategies/base-strategy.class.d.ts +24 -24
  53. package/build/strategies/base-strategy.class.js +66 -66
  54. package/build/strategies/default-strategy.class.d.ts +16 -16
  55. package/build/strategies/default-strategy.class.js +44 -44
  56. package/build/strategies/partial-startegy.class.d.ts +20 -20
  57. package/build/strategies/partial-startegy.class.js +72 -72
  58. package/build/strategies/scratch-strategy.class.d.ts +18 -18
  59. package/build/strategies/scratch-strategy.class.js +49 -49
  60. package/build/strategies/strategy.factory.d.ts +8 -8
  61. package/build/strategies/strategy.factory.js +21 -21
  62. package/build/types/codecept.type.d.ts +28 -27
  63. package/build/types/codecept.type.js +2 -2
  64. package/build/types/origin.type.d.ts +46 -46
  65. package/build/types/origin.type.js +2 -2
  66. package/build/types/strategy.type.d.ts +14 -10
  67. package/build/types/strategy.type.js +2 -2
  68. package/package.json +46 -46
  69. package/testit-adapter-codecept-1.1.2.tgz +0 -0
package/README.md CHANGED
@@ -1,208 +1,180 @@
1
- # Test IT TMS adapters for Codecept
2
- ![Test IT](https://raw.githubusercontent.com/testit-tms/adapters-js/master/images/banner.png)
3
-
4
- ## Getting Started
5
-
6
- ### Compatibility
7
-
8
- | Test IT | Adapter |
9
- |---------|---------|
10
- | 3.5 | 1.0 |
11
- | 4.0 | 1.1 |
12
-
13
- ### Installation
14
- ```
15
- npm install testit-adapter-codecept
16
- ```
17
-
18
- ## Usage
19
-
20
- ### API client
21
-
22
- To use adapter you need to install `testit-api-client`:
23
- ```
24
- npm install testit-api-client
25
- ```
26
-
27
- ### Configuration
28
-
29
- Add TestITHelper and TestITPlugin to Codecept file configuration
30
-
31
- ```ts
32
- export const config: CodeceptJS.MainConfig = {
33
- tests: './**/*_test.ts',
34
- output: './output',
35
- helpers: {
36
- Playwright: {
37
- url: 'http://localhost',
38
- show: false,
39
- browser: 'chromium'
40
- },
41
- TestITHelper: {
42
- require: 'testit-adapter-codecept/build/helper.js'
43
- }
44
- },
45
- plugins: {
46
- TestITPlugin: {
47
- require: 'testit-adapter-codecept/build/bootstrap.js',
48
- enabled: true
49
- }
50
- },
51
- include: {},
52
- name: 'codecept-test-it-testing'
53
- }
54
- ```
55
-
56
- Create step.d.ts file and import TestMetadataHelper
57
-
58
- ```ts
59
- type TestITHelper = import('testit-adapter-codecept/build/helper').TestMetadataHelper;
60
-
61
- declare namespace CodeceptJS {
62
- interface SupportObject { I: I, current: any }
63
- interface Methods extends Playwright, TestITHelper {}
64
- interface I extends WithTranslation<Methods>{}
65
- namespace Translation {
66
- interface Actions {}
67
- }
68
- }
69
- ```
70
-
71
- #### File
72
-
73
- 1. Create .env config or file config with default name testit-adapter.config.json in the root directory of the project
74
-
75
- ```json
76
- {
77
- "url": "<url>",
78
- "privateToken": "<token>",
79
- "projectId": "<id>",
80
- "configurationId": "<id>",
81
- "testRunId": "<id>",
82
- "testRunName": "<optional name>",
83
- "adapterMode": <optional>,
84
- "automaticCreationTestCases": <optional boolean>
85
- }
86
- ```
87
-
88
- 2. Fill parameters with your configuration, where:
89
- * `url` - location of the TMS instance
90
-
91
- * `privateToken` - API secret key
92
- 1. go to the https://{DOMAIN}/user-profile profile
93
- 2. copy the API secret key
94
-
95
- * `projectId` - ID of project in TMS instance.
96
-
97
- 1. create a project
98
- 2. open DevTools -> network
99
- 3. go to the project https://{DOMAIN}/projects/{PROJECT_ID}/tests
100
- 4. GET-request project, Preview tab, copy id field
101
-
102
- * `configurationId` - ID of configuration in TMS instance.
103
-
104
- 1. create a project
105
- 2. open DevTools -> network
106
- 3. go to the project https://{DOMAIN}/projects/{PROJECT_ID}/tests
107
- 4. GET-request configurations, Preview tab, copy id field
108
-
109
- * `testRunId` - id of the created test run in TMS instance. `testRunId` is optional. If it is not provided, it is created automatically.
110
-
111
- * `testRunName` - parameter for specifying the name of test run in TMS instance. `testRunName` is optional. If it is not provided, it is created automatically.
112
-
113
- * `adapterMode` - adapter mode. Default value - 0. The adapter supports following modes:
114
- * 0 - in this mode, the adapter filters tests by test run ID and configuration ID, and sends the results to the test run.
115
- * 1 - in this mode, the adapter sends all results to the test run without filtering.
116
- * 2 - in this mode, the adapter creates a new test run and sends results to the new test run.
117
-
118
- * `automaticCreationTestCases` - mode of automatic creation test cases. Default value - false. The adapter supports following modes:
119
- * true - in this mode, the adapter will create a test case linked to the created autotest (not to the updated autotest).
120
- * false - in this mode, the adapter will not create a test case.
121
-
122
-
123
- ### Methods
124
-
125
- Methods can be used to specify information about autotest.
126
-
127
- Description of metadata methods:
128
- - `workItemIds` - linking an autotest to a test case
129
- - `displayName` - name of the autotest in the Test IT system (can be replaced with documentation strings)
130
- - `externalId` - ID of the autotest within the project in the Test IT System
131
- - `title` - title in the autotest card
132
- - `description` - description in the autotest card
133
- - `labels` - tags in the work item
134
- - `link` - links in the autotest card
135
-
136
- Description of methods:
137
- - `addLinks` - links in the autotest result
138
- - `addAttachments` - uploading files in the autotest result
139
- - `addMessage` - information about autotest in the autotest result
140
-
141
- ### Examples
142
-
143
- #### Simple test
144
- ```ts
145
- Scenario(
146
- 'Scenario name',
147
- {
148
- externalId: '1',
149
- displayName: 'Name',
150
- title: 'Title',
151
- description: 'Description',
152
- labels: ['Custom label'],
153
- links: [
154
- {
155
- title: 'Google about this error',
156
- description: 'Google documents',
157
- url: 'https://google.com',
158
- type: 'Requirement',
159
- hasInfo: true
160
- }
161
- ],
162
- workitemIds: ['1140']
163
- },
164
- ({ I }) => {
165
- I.amOnPage('https://github.com');
166
- I.addLinks([
167
- {
168
- title: 'Github page',
169
- description: 'Github SPA page',
170
- url: 'https://github.com',
171
- type: 'Repository',
172
- hasInfo: true
173
- }
174
- ])
175
- I.addMessage('Hello');
176
- I.see('GitHub');
177
- });
178
-
179
- ```
180
-
181
- #### Parameterized test
182
- ```ts
183
- const data = new DataTable(['target', 'element']);
184
-
185
- data.add(['https://mail.google.com', '//a[contains(., "Почта")]']);
186
- data.add(['https://www.wikipedia.org', '//input']);
187
- data.add(['https://google.com', '//a[contains(., "Google")]']);
188
-
189
- Data(data).Scenario('Should render main page for all users', ({ I, current }) => {
190
- I.amOnPage(current.target);
191
- I.seeElement(current.element);
192
- })
193
- ```
194
-
195
-
196
- # Contributing
197
-
198
- You can help to develop the project. Any contributions are **greatly appreciated**.
199
-
200
- * If you have suggestions for adding or removing projects, feel free to [open an issue](https://github.com/testit-tms/adapters-js/issues/new) to discuss it, or directly create a pull request after you edit the *README.md* file with necessary changes.
201
- * Please make sure you check your spelling and grammar.
202
- * Create individual PR for each suggestion.
203
- * Please also read through the [Code Of Conduct](https://github.com/testit-tms/adapters-js/blob/master/CODE_OF_CONDUCT.md) before posting your first idea as well.
204
-
205
- # License
206
-
207
- Distributed under the Apache-2.0 License. See [LICENSE](https://github.com/testit-tms/adapters-js/blob/master/LICENSE.md) for more information.
208
-
1
+ # Test IT TMS adapters for Codecept
2
+ ![Test IT](https://raw.githubusercontent.com/testit-tms/adapters-js/master/images/banner.png)
3
+
4
+ ## Getting Started
5
+
6
+ ### Installation
7
+ ```
8
+ npm install testit-adapter-codecept
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ### API client
14
+
15
+ To use adapter you need to install `testit-api-client`:
16
+ ```
17
+ npm install testit-api-client
18
+ ```
19
+
20
+ ### Configuration
21
+
22
+ | Description | Property | Environment variable | CLI argument |
23
+ |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------|-----------------------------------|-------------------------------|
24
+ | Location of the TMS instance | url | TMS_URL | tmsUrl |
25
+ | API secret key [How to getting API secret key?](https://github.com/testit-tms/.github/tree/main/configuration#privatetoken) | privateToken | TMS_PRIVATE_TOKEN | tmsPrivateToken |
26
+ | ID of project in TMS instance [How to getting project ID?](https://github.com/testit-tms/.github/tree/main/configuration#projectid) | projectId | TMS_PROJECT_ID | tmsProjectId |
27
+ | ID of configuration in TMS instance [How to getting configuration ID?](https://github.com/testit-tms/.github/tree/main/configuration#configurationid) | configurationId | TMS_CONFIGURATION_ID | tmsConfigurationId |
28
+ | ID of the created test run in TMS instance.<br/>It's necessary for **adapterMode** 0 or 1 | testRunId | TMS_TEST_RUN_ID | tmsTestRunId |
29
+ | Parameter for specifying the name of test run in TMS instance (**It's optional**). If it is not provided, it is created automatically | testRunName | TMS_TEST_RUN_NAME | tmsTestRunName |
30
+ | Adapter mode. Default value - 0. The adapter supports following modes:<br/>0 - in this mode, the adapter filters tests by test run ID and configuration ID, and sends the results to the test run<br/>1 - in this mode, the adapter sends all results to the test run without filtering<br/>2 - in this mode, the adapter creates a new test run and sends results to the new test run | adapterMode | TMS_ADAPTER_MODE | tmsAdapterMode |
31
+ | It enables/disables certificate validation (**It's optional**). Default value - true | certValidation | TMS_CERT_VALIDATION | tmsCertValidation |
32
+ | Mode of automatic creation test cases (**It's optional**). Default value - false. The adapter supports following modes:<br/>true - in this mode, the adapter will create a test case linked to the created autotest (not to the updated autotest)<br/>false - in this mode, the adapter will not create a test case | automaticCreationTestCases | TMS_AUTOMATIC_CREATION_TEST_CASES | tmsAutomaticCreationTestCases |
33
+
34
+ Add TestITHelper and TestITPlugin to Codecept file configuration
35
+
36
+ ```ts
37
+ export const config: CodeceptJS.MainConfig = {
38
+ tests: './**/*_test.ts',
39
+ output: './output',
40
+ helpers: {
41
+ Playwright: {
42
+ url: 'http://localhost',
43
+ show: false,
44
+ browser: 'chromium'
45
+ },
46
+ TestITHelper: {
47
+ require: 'testit-adapter-codecept/build/helper.js'
48
+ }
49
+ },
50
+ plugins: {
51
+ TestITPlugin: {
52
+ require: 'testit-adapter-codecept/build/bootstrap.js',
53
+ enabled: true
54
+ }
55
+ },
56
+ include: {},
57
+ name: 'codecept-test-it-testing'
58
+ }
59
+ ```
60
+
61
+ Create step.d.ts file and import TestMetadataHelper
62
+
63
+ ```ts
64
+ type TestITHelper = import('testit-adapter-codecept/build/helper').TestMetadataHelper;
65
+
66
+ declare namespace CodeceptJS {
67
+ interface SupportObject { I: I, current: any }
68
+ interface Methods extends Playwright, TestITHelper {}
69
+ interface I extends WithTranslation<Methods>{}
70
+ namespace Translation {
71
+ interface Actions {}
72
+ }
73
+ }
74
+ ```
75
+
76
+ #### File
77
+
78
+ Create .env config or file config with default name testit-adapter.config.json in the root directory of the project
79
+
80
+ ```json
81
+ {
82
+ "url": "URL",
83
+ "privateToken": "USER_PRIVATE_TOKEN",
84
+ "projectId": "PROJECT_ID",
85
+ "configurationId": "CONFIGURATION_ID",
86
+ "testRunId": "TEST_RUN_ID",
87
+ "testRunName": "TEST_RUN_NAME",
88
+ "adapterMode": ADAPTER_MODE,
89
+ "automaticCreationTestCases": AUTOMATIC_CREATION_TEST_CASES
90
+ }
91
+ ```
92
+
93
+ ### Methods
94
+
95
+ Methods can be used to specify information about autotest.
96
+
97
+ Description of metadata methods:
98
+ - `workItemIds` - linking an autotest to a test case
99
+ - `displayName` - name of the autotest in the Test IT system (can be replaced with documentation strings)
100
+ - `externalId` - ID of the autotest within the project in the Test IT System
101
+ - `title` - title in the autotest card
102
+ - `description` - description in the autotest card
103
+ - `labels` - tags in the work item
104
+ - `link` - links in the autotest card
105
+ - `nameSpace` - directory in the TMS system
106
+ - `className` - subdirectory in the TMS system
107
+
108
+ Description of methods:
109
+ - `addLinks` - links in the autotest result
110
+ - `addAttachments` - uploading files in the autotest result
111
+ - `addMessage` - information about autotest in the autotest result
112
+
113
+ ### Examples
114
+
115
+ #### Simple test
116
+ ```ts
117
+ Scenario(
118
+ 'Scenario name',
119
+ {
120
+ externalId: '1',
121
+ displayName: 'Name',
122
+ title: 'Title',
123
+ description: 'Description',
124
+ labels: ['Custom label'],
125
+ links: [
126
+ {
127
+ title: 'Google about this error',
128
+ description: 'Google documents',
129
+ url: 'https://google.com',
130
+ type: 'Requirement',
131
+ hasInfo: true
132
+ }
133
+ ],
134
+ workitemIds: ['1140']
135
+ },
136
+ ({ I }) => {
137
+ I.amOnPage('https://github.com');
138
+ I.addLinks([
139
+ {
140
+ title: 'Github page',
141
+ description: 'Github SPA page',
142
+ url: 'https://github.com',
143
+ type: 'Repository',
144
+ hasInfo: true
145
+ }
146
+ ])
147
+ I.addMessage('Hello');
148
+ I.see('GitHub');
149
+ });
150
+
151
+ ```
152
+
153
+ #### Parameterized test
154
+ ```ts
155
+ const data = new DataTable(['target', 'element']);
156
+
157
+ data.add(['https://mail.google.com', '//a[contains(., "Почта")]']);
158
+ data.add(['https://www.wikipedia.org', '//input']);
159
+ data.add(['https://google.com', '//a[contains(., "Google")]']);
160
+
161
+ Data(data).Scenario('Should render main page for all users', ({ I, current }) => {
162
+ I.amOnPage(current.target);
163
+ I.seeElement(current.element);
164
+ })
165
+ ```
166
+
167
+
168
+ # Contributing
169
+
170
+ You can help to develop the project. Any contributions are **greatly appreciated**.
171
+
172
+ * If you have suggestions for adding or removing projects, feel free to [open an issue](https://github.com/testit-tms/adapters-js/issues/new) to discuss it, or directly create a pull request after you edit the *README.md* file with necessary changes.
173
+ * Please make sure you check your spelling and grammar.
174
+ * Create individual PR for each suggestion.
175
+ * Please also read through the [Code Of Conduct](https://github.com/testit-tms/adapters-js/blob/master/CODE_OF_CONDUCT.md) before posting your first idea as well.
176
+
177
+ # License
178
+
179
+ Distributed under the Apache-2.0 License. See [LICENSE](https://github.com/testit-tms/adapters-js/blob/master/LICENSE.md) for more information.
180
+
@@ -1 +1 @@
1
- export {};
1
+ export {};
@@ -1,34 +1,37 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const codeceptjs_1 = require("codeceptjs");
4
- const config_class_1 = require("./common/classes/config.class");
5
- const logger_class_1 = require("./common/classes/logger.class");
6
- const default_http_client_class_1 = require("./http/default-http-client.class");
7
- const strategy_factory_1 = require("./strategies/strategy.factory");
8
- module.exports = async function () {
9
- const config = new config_class_1.ConfigComposer().compose();
10
- const logger = new logger_class_1.Logger(config.__DEV);
11
- const http = new default_http_client_class_1.DefaultHttpClient(config, logger);
12
- const strategy = strategy_factory_1.StrategyFactory.create(http, logger, config);
13
- const helper = codeceptjs_1.container.helpers('TestITHelper');
14
- await strategy.bootstrap();
15
- codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.test.after, (test) => {
16
- strategy.collect(test.id, helper.metadata);
17
- helper.metadata = {};
18
- });
19
- codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.test.before, async (test) => {
20
- await strategy.beforeTest(test);
21
- });
22
- codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.suite.after, async (suite) => {
23
- codeceptjs_1.recorder.add('transferTestAndRuns', async () => {
24
- await strategy.transferTestsToSystem(suite);
25
- await strategy.transferRunsToSystem(suite);
26
- });
27
- });
28
- codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.all.after, async () => {
29
- await strategy.teardown();
30
- });
31
- codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.all.after, async () => {
32
- await strategy.teardown();
33
- });
34
- };
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const codeceptjs_1 = require("codeceptjs");
4
+ const config_class_1 = require("./common/classes/config.class");
5
+ const logger_class_1 = require("./common/classes/logger.class");
6
+ const default_http_client_class_1 = require("./http/default-http-client.class");
7
+ const strategy_factory_1 = require("./strategies/strategy.factory");
8
+ module.exports = async function () {
9
+ const config = new config_class_1.ConfigComposer().compose();
10
+ const logger = new logger_class_1.Logger(config.__DEV);
11
+ const http = new default_http_client_class_1.DefaultHttpClient(config, logger);
12
+ const strategy = strategy_factory_1.StrategyFactory.create(http, logger, config);
13
+ const helper = codeceptjs_1.container.helpers('TestITHelper');
14
+ await strategy.bootstrap();
15
+ codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.test.after, (test) => {
16
+ strategy.collect(test.id, helper.metadata);
17
+ helper.metadata = {};
18
+ });
19
+ codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.test.before, async (test) => {
20
+ await strategy.beforeTest(test);
21
+ });
22
+ codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.test.finished, async (test) => {
23
+ codeceptjs_1.recorder.add('transferTestAndRuns', async () => {
24
+ const suite = {
25
+ tests: [test]
26
+ };
27
+ await strategy.transferTestsToSystem(suite);
28
+ await strategy.transferRunsToSystem(suite);
29
+ });
30
+ });
31
+ codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.all.after, async () => {
32
+ await strategy.teardown();
33
+ });
34
+ codeceptjs_1.event.dispatcher.on(codeceptjs_1.event.all.after, async () => {
35
+ await strategy.teardown();
36
+ });
37
+ };
@@ -1 +1 @@
1
- export {};
1
+ export {};
@@ -1,15 +1,15 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const box_class_1 = require("../classes/box.class");
4
- describe('Box', () => {
5
- const box = new box_class_1.Box();
6
- it('Should append values to box and merge them', () => {
7
- box.collectWithMerge('1', { a: 1 });
8
- box.collectWithMerge('1', { b: 2 });
9
- expect(box.get('1'))
10
- .toEqual({
11
- a: 1,
12
- b: 2
13
- });
14
- });
15
- });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const box_class_1 = require("../classes/box.class");
4
+ describe('Box', () => {
5
+ const box = new box_class_1.Box();
6
+ it('Should append values to box and merge them', () => {
7
+ box.collectWithMerge('1', { a: 1 });
8
+ box.collectWithMerge('1', { b: 2 });
9
+ expect(box.get('1'))
10
+ .toEqual({
11
+ a: 1,
12
+ b: 2
13
+ });
14
+ });
15
+ });
@@ -1,4 +1,4 @@
1
- import { Codecept } from '../../types/codecept.type';
2
- import { Origin } from '../../types/origin.type';
3
- export declare function getDefaultTest(): Codecept.Test<Origin.TestConfig>;
4
- export declare function getDefaultConfig(): Origin.Config;
1
+ import { Codecept } from '../../types/codecept.type';
2
+ import { Origin } from '../../types/origin.type';
3
+ export declare function getDefaultTest(): Codecept.Test<Origin.TestConfig>;
4
+ export declare function getDefaultConfig(): Origin.Config;