@zohodesk/unit-testing-framework 0.0.7-experimental → 0.0.8-experimental

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.
@@ -46,7 +46,7 @@ class HtmlReporter {
46
46
  onRunComplete(_contexts, aggregatedResults) {
47
47
  const elapsed = ((Date.now() - this._startTime) / 1000).toFixed(2);
48
48
  const rootDir = this.globalConfig.rootDir || process.cwd();
49
- const outputDir = this.options.outputDir ? _path.default.resolve(rootDir, this.options.outputDir) : _path.default.resolve(rootDir, 'unit_reports');
49
+ const outputDir = this.options.outputDir ? _path.default.resolve(rootDir, this.options.outputDir) : _path.default.resolve(rootDir, 'test-slices', 'unit-test', 'unit_reports');
50
50
  const fileName = this.options.fileName || 'report.html';
51
51
  const title = this.options.title || 'Unit Test Report';
52
52
  const outputPath = _path.default.join(outputDir, fileName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zohodesk/unit-testing-framework",
3
- "version": "0.0.7-experimental",
3
+ "version": "0.0.8-experimental",
4
4
  "description": "A modular Jest-based unit testing framework",
5
5
  "main": "./build/index.js",
6
6
  "exports": {