testcafe-reporter-testit 2.2.6 → 3.0.0

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 (2) hide show
  1. package/lib/reporter.js +2 -3
  2. package/package.json +2 -2
package/lib/reporter.js CHANGED
@@ -11,9 +11,8 @@ class TmsReporter {
11
11
  this.testCache = new Array();
12
12
  this.loadTestPromises = new Array();
13
13
  const config = new testit_js_commons_1.ConfigComposer().compose();
14
- const client = new testit_js_commons_1.Client(config);
15
- this.strategy = testit_js_commons_1.StrategyFactory.create(client, config);
16
- this.additions = new testit_js_commons_1.Additions(client);
14
+ this.strategy = testit_js_commons_1.StrategyFactory.create(config);
15
+ this.additions = new testit_js_commons_1.Additions(config);
17
16
  }
18
17
  onFixtureBegin(name, path, meta) {
19
18
  this.groupMetadata = new metadata_1.default(meta);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testcafe-reporter-testit",
3
- "version": "2.2.6",
3
+ "version": "3.0.0",
4
4
  "description": "TestCafe adapter for Test IT",
5
5
  "keywords": [],
6
6
  "author": {
@@ -42,6 +42,6 @@
42
42
  "testcafe": "^3.0.1"
43
43
  },
44
44
  "dependencies": {
45
- "testit-js-commons": "~2.2.6"
45
+ "testit-js-commons": "~3.0.0"
46
46
  }
47
47
  }