@flash-ai-team/flash-test-framework 0.0.3 → 0.0.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.
package/dist/index.d.ts CHANGED
@@ -3,3 +3,7 @@ export { AIWeb } from './keywords/AIWebUI';
3
3
  export { Keyword, KeywordContext } from './core/Keyword';
4
4
  export { TestObject, el } from './core/ObjectRepository';
5
5
  export { TestCase } from './core/TestDecorators';
6
+ export { test, expect } from './core/TestBase';
7
+ export { default as CustomReporter } from './reporting/CustomReporter';
8
+ export { default as HtmlReporter } from './reporting/HtmlReporter';
9
+ export { default as EmailReporter } from './reporting/EmailReporter';
package/dist/index.js CHANGED
@@ -1,6 +1,10 @@
1
1
  "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
2
5
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TestCase = exports.el = exports.TestObject = exports.KeywordContext = exports.Keyword = exports.AIWeb = exports.Web = void 0;
6
+ exports.EmailReporter = exports.HtmlReporter = exports.CustomReporter = exports.expect = exports.test = exports.TestCase = exports.el = exports.TestObject = exports.KeywordContext = exports.Keyword = exports.AIWeb = exports.Web = void 0;
7
+ // Core
4
8
  var WebUI_1 = require("./keywords/WebUI");
5
9
  Object.defineProperty(exports, "Web", { enumerable: true, get: function () { return WebUI_1.Web; } });
6
10
  var AIWebUI_1 = require("./keywords/AIWebUI");
@@ -13,3 +17,13 @@ Object.defineProperty(exports, "TestObject", { enumerable: true, get: function (
13
17
  Object.defineProperty(exports, "el", { enumerable: true, get: function () { return ObjectRepository_1.el; } });
14
18
  var TestDecorators_1 = require("./core/TestDecorators");
15
19
  Object.defineProperty(exports, "TestCase", { enumerable: true, get: function () { return TestDecorators_1.TestCase; } });
20
+ var TestBase_1 = require("./core/TestBase");
21
+ Object.defineProperty(exports, "test", { enumerable: true, get: function () { return TestBase_1.test; } });
22
+ Object.defineProperty(exports, "expect", { enumerable: true, get: function () { return TestBase_1.expect; } });
23
+ // Reporters
24
+ var CustomReporter_1 = require("./reporting/CustomReporter");
25
+ Object.defineProperty(exports, "CustomReporter", { enumerable: true, get: function () { return __importDefault(CustomReporter_1).default; } });
26
+ var HtmlReporter_1 = require("./reporting/HtmlReporter");
27
+ Object.defineProperty(exports, "HtmlReporter", { enumerable: true, get: function () { return __importDefault(HtmlReporter_1).default; } });
28
+ var EmailReporter_1 = require("./reporting/EmailReporter");
29
+ Object.defineProperty(exports, "EmailReporter", { enumerable: true, get: function () { return __importDefault(EmailReporter_1).default; } });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flash-ai-team/flash-test-framework",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "A powerful keyword-driven automation framework built on top of Playwright and TypeScript.",
5
5
  "keywords": [
6
6
  "playwright",