@testomatio/reporter 1.6.17-beta-artifacts → 1.6.17-beta.2-tls-fix

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 (51) hide show
  1. package/lib/adapter/codecept.d.ts +2 -0
  2. package/lib/adapter/cucumber/current.d.ts +14 -0
  3. package/lib/adapter/cucumber/legacy.d.ts +0 -0
  4. package/lib/adapter/cucumber.d.ts +2 -0
  5. package/lib/adapter/cypress-plugin/index.d.ts +2 -0
  6. package/lib/adapter/jasmine.d.ts +11 -0
  7. package/lib/adapter/jest.d.ts +13 -0
  8. package/lib/adapter/mocha.d.ts +2 -0
  9. package/lib/adapter/nightwatch.d.ts +4 -0
  10. package/lib/adapter/nightwatch.js +75 -0
  11. package/lib/adapter/playwright.d.ts +14 -0
  12. package/lib/adapter/vitest.d.ts +35 -0
  13. package/lib/adapter/webdriver.d.ts +24 -0
  14. package/lib/bin/cli.d.ts +2 -0
  15. package/lib/bin/reportXml.d.ts +2 -0
  16. package/lib/bin/startTest.d.ts +2 -0
  17. package/lib/bin/uploadArtifacts.d.ts +2 -0
  18. package/lib/client.d.ts +76 -0
  19. package/lib/config.d.ts +1 -0
  20. package/lib/constants.d.ts +25 -0
  21. package/lib/data-storage.d.ts +34 -0
  22. package/lib/junit-adapter/adapter.d.ts +9 -0
  23. package/lib/junit-adapter/csharp.d.ts +5 -0
  24. package/lib/junit-adapter/index.d.ts +3 -0
  25. package/lib/junit-adapter/java.d.ts +5 -0
  26. package/lib/junit-adapter/javascript.d.ts +4 -0
  27. package/lib/junit-adapter/python.d.ts +5 -0
  28. package/lib/junit-adapter/ruby.d.ts +4 -0
  29. package/lib/output.d.ts +11 -0
  30. package/lib/package.json +3 -0
  31. package/lib/pipe/bitbucket.d.ts +23 -0
  32. package/lib/pipe/csv.d.ts +47 -0
  33. package/lib/pipe/debug.d.ts +29 -0
  34. package/lib/pipe/github.d.ts +30 -0
  35. package/lib/pipe/gitlab.d.ts +23 -0
  36. package/lib/pipe/html.d.ts +35 -0
  37. package/lib/pipe/index.d.ts +1 -0
  38. package/lib/pipe/testomatio.d.ts +70 -0
  39. package/lib/pipe/testomatio.js +6 -0
  40. package/lib/reporter-functions.d.ts +34 -0
  41. package/lib/reporter.d.ts +232 -0
  42. package/lib/services/artifacts.d.ts +33 -0
  43. package/lib/services/index.d.ts +9 -0
  44. package/lib/services/key-values.d.ts +27 -0
  45. package/lib/services/logger.d.ts +64 -0
  46. package/lib/uploader.d.ts +60 -0
  47. package/lib/utils/pipe_utils.d.ts +41 -0
  48. package/lib/utils/utils.d.ts +45 -0
  49. package/lib/utils/utils.js +2 -5
  50. package/lib/xmlReader.d.ts +92 -0
  51. package/package.json +1 -1
@@ -0,0 +1,92 @@
1
+ export default XmlReader;
2
+ declare class XmlReader {
3
+ constructor(opts?: {});
4
+ requestParams: {
5
+ apiKey: any;
6
+ url: any;
7
+ title: string;
8
+ env: string;
9
+ group_title: string;
10
+ detach: string;
11
+ isBatchEnabled: boolean;
12
+ };
13
+ runId: any;
14
+ adapter: import("./junit-adapter/adapter.js").default;
15
+ opts: {};
16
+ store: {};
17
+ pipesPromise: Promise<any[]>;
18
+ parser: XMLParser;
19
+ tests: any[];
20
+ stats: {};
21
+ uploader: S3Uploader;
22
+ version: any;
23
+ connectAdapter(): import("./junit-adapter/adapter.js").default;
24
+ parse(fileName: any): {
25
+ status: string;
26
+ create_tests: boolean;
27
+ tests_count: number;
28
+ passed_count: number;
29
+ skipped_count: number;
30
+ failed_count: number;
31
+ tests: any;
32
+ } | {
33
+ status: any;
34
+ create_tests: boolean;
35
+ tests_count: number;
36
+ passed_count: number;
37
+ failed_count: number;
38
+ skipped_count: number;
39
+ tests: any[];
40
+ };
41
+ processJUnit(jsonSuite: any): {
42
+ create_tests: boolean;
43
+ duration: number;
44
+ failed_count: number;
45
+ name: any;
46
+ passed_count: number;
47
+ skipped_count: number;
48
+ status: string;
49
+ tests: any[];
50
+ tests_count: number;
51
+ };
52
+ processNUnit(jsonSuite: any): {
53
+ status: any;
54
+ create_tests: boolean;
55
+ tests_count: number;
56
+ passed_count: number;
57
+ failed_count: number;
58
+ skipped_count: number;
59
+ tests: any[];
60
+ };
61
+ processTRX(jsonSuite: any): {
62
+ status: string;
63
+ create_tests: boolean;
64
+ tests_count: number;
65
+ passed_count: number;
66
+ skipped_count: number;
67
+ failed_count: number;
68
+ tests: any;
69
+ };
70
+ processXUnit(assemblies: any): {
71
+ status: string;
72
+ create_tests: boolean;
73
+ name: string;
74
+ tests_count: number;
75
+ passed_count: number;
76
+ failed_count: number;
77
+ skipped_count: number;
78
+ tests: any[];
79
+ };
80
+ calculateStats(): {};
81
+ fetchSourceCode(): void;
82
+ formatTests(): void;
83
+ formatErrors(): void;
84
+ formatStack(t: any): any;
85
+ uploadArtifacts(): Promise<void>;
86
+ createRun(): Promise<any[]>;
87
+ pipes: any;
88
+ uploadData(): Promise<any[]>;
89
+ _finishRun(): Promise<any[]>;
90
+ }
91
+ import { XMLParser } from 'fast-xml-parser';
92
+ import { S3Uploader } from './uploader.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testomatio/reporter",
3
- "version": "1.6.17-beta-artifacts",
3
+ "version": "1.6.17-beta.2-tls-fix",
4
4
  "description": "Testomatio Reporter Client",
5
5
  "main": "./lib/reporter.js",
6
6
  "typings": "typings/index.d.ts",