odhin-reports-playwright 1.0.5 → 1.0.6

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.
package/lib/generate.d.ts CHANGED
@@ -45,6 +45,7 @@ declare class Generate {
45
45
  private TEST_FOLDER;
46
46
  private THEME;
47
47
  private INDEX_FILE;
48
+ private CURRENT_VERSION;
48
49
  constructor(execOptions: ExecOptions);
49
50
  onBegin(config: FullConfig, suite: Suite): Promise<void>;
50
51
  onTestEnd(testCase: ExecTestCase, result: ExecTestResult): Promise<void>;
package/lib/generate.js CHANGED
@@ -13,12 +13,13 @@ const node_util_1 = __importDefault(require("node:util"));
13
13
  const process_1 = require("process");
14
14
  class Generate {
15
15
  constructor(execOptions) {
16
- // Const Variables
16
+ // Constants
17
17
  this.OUTPUT_FOLDER = "odhin-reports";
18
18
  this.TITLE = "Odhin Reports";
19
19
  this.TEST_FOLDER = "tests";
20
20
  this.THEME = "light";
21
21
  this.INDEX_FILE = "index.html";
22
+ this.CURRENT_VERSION = "1.0.6";
22
23
  this.execOptions = execOptions;
23
24
  this.totalDuration = 0;
24
25
  this.help = new help_1.default(this.execOptions);
@@ -925,7 +926,7 @@ class Generate {
925
926
  this.base = this.base.replace("{{.SummaryFiles}}", summaryFiles);
926
927
  this.base = this.base.replace("{{.SummaryProjects}}", summaryProjects);
927
928
  this.base = this.base.replace("{{.Content}}", this.content);
928
- this.base = this.base.replaceAll("{{.Version}}", "1.0.4");
929
+ this.base = this.base.replaceAll("{{.Version}}", this.CURRENT_VERSION);
929
930
  this.base = this.base.replaceAll("{{.ShortVersion}}", "v1");
930
931
  // Create the final HTML report file
931
932
  this.help.createFile(this.execOptions.outputFolder + "/" + this.execOptions.indexFilename, this.base);
@@ -171,6 +171,9 @@
171
171
  </a>
172
172
  </div>
173
173
  </div>
174
+ <div class="desc-modal odhin-text-1">
175
+ <img style="border-radius: 50px; margin-top: 10px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFcAAABXCAMAAABGFileAAAAAXNSR0IArs4c6QAAAC1QTFRF+/38+fv68PP16uzw1Nfiur7SoabAkpe4foSrbnSgR0+HLjd3HCVrDRZgCRNfqTmH+QAAAo5JREFUeNrt2d2K4zAMhmHJ/5b86f4vd2vHbVMm2WGalB2WvJSUHORBCFIflK7+69jHEZ1dhJlB6eQ4oqd0dqH2Cv3iqvYSUdR1lYl0FOitxHrZRS541oKLhNEx17dMec1KPclF4gmb3lhM1466hjxhDSzAWfOaIQ64Ba64u2aH3Q5ThvrOPueN9E68dq3vOCzsefu9NaarGJVD85KuXWuRqACvezg+b4tcItXpnjTvYCu6faY7WaB/nekOb77F9eHa0f0icgEmzHL0fQs63UQ+3yq9TF6mW5jehNtwc3/e+RHd8okOscSxmWUapdYTWgIgTG/HCXc35Jxun4crgY6UcXfj6O6qp0NxnW62ntKSBjoY+w2XAx2O+cU9Of6EO+eV9tV1kenbfBGVGph6pY6Sp1ExhDrdKtWRk371LdNSFMm0WWoAzCCDUoOZwVr1y7zq83R1fMOEbi7SdA1lmwWgIgBal9SaiDYzUz/mlW3XLE/XNl3fgMTMQYA6HhYet2Z1umm6Mt26uMi873JeWCYnaP7hshOD33LbdG9V3t+DQHgpA/HpcoTFu9tiT19chVl1u3tQFB5RBPLK9c3y3Z29uDXBIC72RW/UUHkpAukHbqHYDJJ2XIFONwFhZw8aevLqLgdA23EzkLnnFeqerldr7uEy3frijiNr22XfgOqYo471TtdFNSv0nctezZBpq9gAaL8ID9fQGsxQ3cNt7unqdDMNWMzS3vmL1TmrNoKmfst/c0dO91ziWGrNgUYp91JgGq3dmLsQYyDifp2wpJ//rFNdubx7tPy09bz78RvunNfTyVXTj7n5I24L9SOuFf2Ma3a5l3u5l3u5l3u5l/vvXY61VxydHF//vf2m/gAUSD3C2nfZkAAAAABJRU5ErkJggg=="/>
176
+ </div>
174
177
  </div>
175
178
  </div>
176
179
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "odhin-reports-playwright",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Odhin Reports for Playwright",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",