intellitester 0.2.12 → 0.2.13
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/{chunk-LVWIFM33.js → chunk-BYSKHSJB.js} +6 -5
- package/dist/chunk-BYSKHSJB.js.map +1 -0
- package/dist/{chunk-H34IO3AV.cjs → chunk-UM7RXADM.cjs} +6 -5
- package/dist/chunk-UM7RXADM.cjs.map +1 -0
- package/dist/cli/index.cjs +34 -34
- package/dist/cli/index.js +1 -1
- package/dist/index.cjs +28 -28
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-H34IO3AV.cjs.map +0 -1
- package/dist/chunk-LVWIFM33.js.map +0 -1
package/dist/cli/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var chunkUM7RXADM_cjs = require('../chunk-UM7RXADM.cjs');
|
|
5
5
|
var chunkARJYJVRM_cjs = require('../chunk-ARJYJVRM.cjs');
|
|
6
6
|
require('../chunk-QMYM2TCH.cjs');
|
|
7
7
|
require('../chunk-PAKODOH4.cjs');
|
|
@@ -158,7 +158,7 @@ ${"=".repeat(60)}`);
|
|
|
158
158
|
}
|
|
159
159
|
let trackingServer = null;
|
|
160
160
|
try {
|
|
161
|
-
trackingServer = await
|
|
161
|
+
trackingServer = await chunkUM7RXADM_cjs.startTrackingServer({ port: 0 });
|
|
162
162
|
console.log(`Tracking server started on port ${trackingServer.port}`);
|
|
163
163
|
} catch (error) {
|
|
164
164
|
console.warn("Failed to start tracking server:", error);
|
|
@@ -170,7 +170,7 @@ ${"=".repeat(60)}`);
|
|
|
170
170
|
let serverProcess = null;
|
|
171
171
|
if (pipeline.config?.webServer) {
|
|
172
172
|
try {
|
|
173
|
-
serverProcess = await
|
|
173
|
+
serverProcess = await chunkUM7RXADM_cjs.startWebServer({
|
|
174
174
|
...pipeline.config.webServer,
|
|
175
175
|
cwd: pipelineDir
|
|
176
176
|
});
|
|
@@ -182,7 +182,7 @@ ${"=".repeat(60)}`);
|
|
|
182
182
|
}
|
|
183
183
|
const signalCleanup = async () => {
|
|
184
184
|
console.log("\n\nInterrupted - cleaning up...");
|
|
185
|
-
|
|
185
|
+
chunkUM7RXADM_cjs.killServer(serverProcess);
|
|
186
186
|
if (trackingServer) await trackingServer.stop();
|
|
187
187
|
process.exit(1);
|
|
188
188
|
};
|
|
@@ -198,7 +198,7 @@ ${"=".repeat(60)}`);
|
|
|
198
198
|
variables: /* @__PURE__ */ new Map(),
|
|
199
199
|
lastEmail: null,
|
|
200
200
|
emailClient: null,
|
|
201
|
-
appwriteContext:
|
|
201
|
+
appwriteContext: chunkUM7RXADM_cjs.createTestContext(),
|
|
202
202
|
appwriteConfig: pipeline.config?.appwrite ? {
|
|
203
203
|
endpoint: pipeline.config.appwrite.endpoint,
|
|
204
204
|
projectId: pipeline.config.appwrite.projectId,
|
|
@@ -206,7 +206,7 @@ ${"=".repeat(60)}`);
|
|
|
206
206
|
} : void 0
|
|
207
207
|
};
|
|
208
208
|
if (pipeline.config?.appwrite) {
|
|
209
|
-
|
|
209
|
+
chunkUM7RXADM_cjs.setupAppwriteTracking(page, executionContext);
|
|
210
210
|
}
|
|
211
211
|
const completedIds = /* @__PURE__ */ new Set();
|
|
212
212
|
const failedIds = /* @__PURE__ */ new Set();
|
|
@@ -273,7 +273,7 @@ ${"=".repeat(40)}`);
|
|
|
273
273
|
console.log(`File: ${workflowRef.file}`);
|
|
274
274
|
console.log(`${"=".repeat(40)}`);
|
|
275
275
|
try {
|
|
276
|
-
const workflowDefinition = await
|
|
276
|
+
const workflowDefinition = await chunkUM7RXADM_cjs.loadWorkflowDefinition(workflowFilePath);
|
|
277
277
|
if (workflowRef.variables) {
|
|
278
278
|
for (const [key, value] of Object.entries(workflowRef.variables)) {
|
|
279
279
|
const interpolated = value.replace(/\{\{(\w+)\}\}/g, (match, varName) => {
|
|
@@ -294,7 +294,7 @@ ${"=".repeat(40)}`);
|
|
|
294
294
|
sessionId,
|
|
295
295
|
testStartTime
|
|
296
296
|
};
|
|
297
|
-
const result = await
|
|
297
|
+
const result = await chunkUM7RXADM_cjs.runWorkflowWithContext(
|
|
298
298
|
workflowDefinition,
|
|
299
299
|
workflowFilePath,
|
|
300
300
|
workflowOptions
|
|
@@ -431,7 +431,7 @@ ${"=".repeat(60)}`);
|
|
|
431
431
|
process.off("SIGTERM", signalCleanup);
|
|
432
432
|
await browserContext.close();
|
|
433
433
|
await browser.close();
|
|
434
|
-
|
|
434
|
+
chunkUM7RXADM_cjs.killServer(serverProcess);
|
|
435
435
|
if (trackingServer) {
|
|
436
436
|
await trackingServer.stop();
|
|
437
437
|
}
|
|
@@ -1096,7 +1096,7 @@ function cleanYamlResponse(response) {
|
|
|
1096
1096
|
return cleaned;
|
|
1097
1097
|
}
|
|
1098
1098
|
async function generateTest(naturalLanguage, options) {
|
|
1099
|
-
const provider =
|
|
1099
|
+
const provider = chunkUM7RXADM_cjs.createAIProvider(options.aiConfig);
|
|
1100
1100
|
let systemPrompt = SYSTEM_PROMPT;
|
|
1101
1101
|
if (options.source !== null) {
|
|
1102
1102
|
const sourceConfig = options.source ?? {};
|
|
@@ -1128,7 +1128,7 @@ Please fix the issue and generate valid YAML.`;
|
|
|
1128
1128
|
const yaml$1 = cleanYamlResponse(response);
|
|
1129
1129
|
lastYaml = yaml$1;
|
|
1130
1130
|
const parsed = yaml.parse(yaml$1);
|
|
1131
|
-
const validated =
|
|
1131
|
+
const validated = chunkUM7RXADM_cjs.TestDefinitionSchema.parse(parsed);
|
|
1132
1132
|
return {
|
|
1133
1133
|
success: true,
|
|
1134
1134
|
test: validated,
|
|
@@ -1469,7 +1469,7 @@ var validateCommand = async (target) => {
|
|
|
1469
1469
|
throw new Error(`No YAML files found at ${absoluteTarget}`);
|
|
1470
1470
|
}
|
|
1471
1471
|
for (const file of files) {
|
|
1472
|
-
await
|
|
1472
|
+
await chunkUM7RXADM_cjs.loadTestDefinition(file);
|
|
1473
1473
|
console.log(`\u2713 ${path4__namespace.default.relative(process2__default.default.cwd(), file)} valid`);
|
|
1474
1474
|
}
|
|
1475
1475
|
};
|
|
@@ -1486,8 +1486,8 @@ var runTestCommand = async (target, options) => {
|
|
|
1486
1486
|
const configContent = await fs3__default.default.readFile(CONFIG_FILENAME, "utf8");
|
|
1487
1487
|
parsedConfig = parse2(configContent);
|
|
1488
1488
|
}
|
|
1489
|
-
const configMissing = parsedConfig ?
|
|
1490
|
-
const testMissing =
|
|
1489
|
+
const configMissing = parsedConfig ? chunkUM7RXADM_cjs.collectMissingEnvVars(parsedConfig) : [];
|
|
1490
|
+
const testMissing = chunkUM7RXADM_cjs.collectMissingEnvVars(parsedTest);
|
|
1491
1491
|
const allMissing = [.../* @__PURE__ */ new Set([...configMissing, ...testMissing])];
|
|
1492
1492
|
if (allMissing.length > 0) {
|
|
1493
1493
|
const projectRoot = await findProjectRoot(absoluteTarget);
|
|
@@ -1496,8 +1496,8 @@ var runTestCommand = async (target, options) => {
|
|
|
1496
1496
|
process2__default.default.exit(1);
|
|
1497
1497
|
}
|
|
1498
1498
|
}
|
|
1499
|
-
const test = await
|
|
1500
|
-
const config = hasConfigFile ? await
|
|
1499
|
+
const test = await chunkUM7RXADM_cjs.loadTestDefinition(absoluteTarget);
|
|
1500
|
+
const config = hasConfigFile ? await chunkUM7RXADM_cjs.loadIntellitesterConfig(CONFIG_FILENAME) : void 0;
|
|
1501
1501
|
const baseUrl = resolveBaseUrl(test, config?.platforms?.web?.baseUrl);
|
|
1502
1502
|
const headed = options.headed ?? false;
|
|
1503
1503
|
const browser = options.browser ?? "chromium";
|
|
@@ -1511,7 +1511,7 @@ var runTestCommand = async (target, options) => {
|
|
|
1511
1511
|
console.log(
|
|
1512
1512
|
`Running ${path4__namespace.default.basename(absoluteTarget)} on web (${browser}${modeFlags.length > 0 ? ", " + modeFlags.join(", ") : ""})`
|
|
1513
1513
|
);
|
|
1514
|
-
const result = await
|
|
1514
|
+
const result = await chunkUM7RXADM_cjs.runWebTest(test, {
|
|
1515
1515
|
baseUrl,
|
|
1516
1516
|
headed,
|
|
1517
1517
|
browser,
|
|
@@ -1543,7 +1543,7 @@ var generateCommand = async (prompt, options) => {
|
|
|
1543
1543
|
const { parse: parse2 } = await import('yaml');
|
|
1544
1544
|
const configContent = await fs3__default.default.readFile(CONFIG_FILENAME, "utf8");
|
|
1545
1545
|
const parsedConfig = parse2(configContent);
|
|
1546
|
-
const configMissing =
|
|
1546
|
+
const configMissing = chunkUM7RXADM_cjs.collectMissingEnvVars(parsedConfig);
|
|
1547
1547
|
if (configMissing.length > 0) {
|
|
1548
1548
|
const projectRoot = await findProjectRoot(CONFIG_FILENAME);
|
|
1549
1549
|
const canContinue = await validateEnvVars(configMissing, projectRoot || process2__default.default.cwd());
|
|
@@ -1551,7 +1551,7 @@ var generateCommand = async (prompt, options) => {
|
|
|
1551
1551
|
process2__default.default.exit(1);
|
|
1552
1552
|
}
|
|
1553
1553
|
}
|
|
1554
|
-
const config = await
|
|
1554
|
+
const config = await chunkUM7RXADM_cjs.loadIntellitesterConfig(CONFIG_FILENAME);
|
|
1555
1555
|
if (!config.ai) {
|
|
1556
1556
|
throw new Error('AI configuration missing in intellitester.config.yaml. Add "ai:" section with provider, model, and apiKey.');
|
|
1557
1557
|
}
|
|
@@ -1596,8 +1596,8 @@ var runWorkflowCommand = async (file, options) => {
|
|
|
1596
1596
|
const configContent = await fs3__default.default.readFile(CONFIG_FILENAME, "utf8");
|
|
1597
1597
|
parsedConfig = parse2(configContent);
|
|
1598
1598
|
}
|
|
1599
|
-
const configMissing = parsedConfig ?
|
|
1600
|
-
const workflowMissing =
|
|
1599
|
+
const configMissing = parsedConfig ? chunkUM7RXADM_cjs.collectMissingEnvVars(parsedConfig) : [];
|
|
1600
|
+
const workflowMissing = chunkUM7RXADM_cjs.collectMissingEnvVars(parsedWorkflow);
|
|
1601
1601
|
const allMissing = [.../* @__PURE__ */ new Set([...configMissing, ...workflowMissing])];
|
|
1602
1602
|
if (allMissing.length > 0) {
|
|
1603
1603
|
const projectRoot = await findProjectRoot(workflowPath);
|
|
@@ -1606,9 +1606,9 @@ var runWorkflowCommand = async (file, options) => {
|
|
|
1606
1606
|
process2__default.default.exit(1);
|
|
1607
1607
|
}
|
|
1608
1608
|
}
|
|
1609
|
-
const workflow = await
|
|
1610
|
-
const config = hasConfigFile ? await
|
|
1611
|
-
const result = await
|
|
1609
|
+
const workflow = await chunkUM7RXADM_cjs.loadWorkflowDefinition(workflowPath);
|
|
1610
|
+
const config = hasConfigFile ? await chunkUM7RXADM_cjs.loadIntellitesterConfig(CONFIG_FILENAME) : void 0;
|
|
1611
|
+
const result = await chunkUM7RXADM_cjs.runWorkflow(workflow, workflowPath, {
|
|
1612
1612
|
headed: options.visible,
|
|
1613
1613
|
browser: options.browser,
|
|
1614
1614
|
interactive: options.interactive,
|
|
@@ -1653,8 +1653,8 @@ var runPipelineCommand = async (file, options) => {
|
|
|
1653
1653
|
const configContent = await fs3__default.default.readFile(CONFIG_FILENAME, "utf8");
|
|
1654
1654
|
parsedConfig = parse2(configContent);
|
|
1655
1655
|
}
|
|
1656
|
-
const configMissing = parsedConfig ?
|
|
1657
|
-
const pipelineMissing =
|
|
1656
|
+
const configMissing = parsedConfig ? chunkUM7RXADM_cjs.collectMissingEnvVars(parsedConfig) : [];
|
|
1657
|
+
const pipelineMissing = chunkUM7RXADM_cjs.collectMissingEnvVars(parsedPipeline);
|
|
1658
1658
|
const allMissing = [.../* @__PURE__ */ new Set([...configMissing, ...pipelineMissing])];
|
|
1659
1659
|
if (allMissing.length > 0) {
|
|
1660
1660
|
const projectRoot = await findProjectRoot(pipelinePath);
|
|
@@ -1663,8 +1663,8 @@ var runPipelineCommand = async (file, options) => {
|
|
|
1663
1663
|
process2__default.default.exit(1);
|
|
1664
1664
|
}
|
|
1665
1665
|
}
|
|
1666
|
-
const pipeline = await
|
|
1667
|
-
hasConfigFile ? await
|
|
1666
|
+
const pipeline = await chunkUM7RXADM_cjs.loadPipelineDefinition(pipelinePath);
|
|
1667
|
+
hasConfigFile ? await chunkUM7RXADM_cjs.loadIntellitesterConfig(CONFIG_FILENAME) : void 0;
|
|
1668
1668
|
const result = await runPipeline(pipeline, pipelinePath, {
|
|
1669
1669
|
headed: options.visible,
|
|
1670
1670
|
browser: options.browser,
|
|
@@ -1719,7 +1719,7 @@ var main = async () => {
|
|
|
1719
1719
|
const browser = resolveBrowserName(options.browser || "chrome");
|
|
1720
1720
|
if (options.preview) {
|
|
1721
1721
|
const hasConfigFile = await fileExists(CONFIG_FILENAME);
|
|
1722
|
-
const config = hasConfigFile ? await
|
|
1722
|
+
const config = hasConfigFile ? await chunkUM7RXADM_cjs.loadIntellitesterConfig(CONFIG_FILENAME) : void 0;
|
|
1723
1723
|
const { cleanup } = await buildAndPreview(config, process2__default.default.cwd());
|
|
1724
1724
|
previewCleanup = cleanup;
|
|
1725
1725
|
}
|
|
@@ -1780,21 +1780,21 @@ var main = async () => {
|
|
|
1780
1780
|
}
|
|
1781
1781
|
return;
|
|
1782
1782
|
}
|
|
1783
|
-
if (
|
|
1783
|
+
if (chunkUM7RXADM_cjs.isPipelineFile(file)) {
|
|
1784
1784
|
await runPipelineCommand(file, runOpts);
|
|
1785
1785
|
return;
|
|
1786
1786
|
}
|
|
1787
|
-
if (
|
|
1787
|
+
if (chunkUM7RXADM_cjs.isWorkflowFile(file)) {
|
|
1788
1788
|
await runWorkflowCommand(file, runOpts);
|
|
1789
1789
|
return;
|
|
1790
1790
|
}
|
|
1791
1791
|
const fileContent = await fs3__default.default.readFile(path4__namespace.default.resolve(file), "utf8");
|
|
1792
|
-
if (
|
|
1792
|
+
if (chunkUM7RXADM_cjs.isPipelineContent(fileContent)) {
|
|
1793
1793
|
console.log(`Note: Detected as pipeline by content structure`);
|
|
1794
1794
|
await runPipelineCommand(file, runOpts);
|
|
1795
1795
|
return;
|
|
1796
1796
|
}
|
|
1797
|
-
if (
|
|
1797
|
+
if (chunkUM7RXADM_cjs.isWorkflowContent(fileContent)) {
|
|
1798
1798
|
console.log(`Note: Detected as workflow by content structure`);
|
|
1799
1799
|
await runWorkflowCommand(file, runOpts);
|
|
1800
1800
|
return;
|
|
@@ -1875,7 +1875,7 @@ Found ${failedCleanups.length} failed cleanup(s):
|
|
|
1875
1875
|
if (!hasConfigFile) {
|
|
1876
1876
|
throw new Error(`No ${CONFIG_FILENAME} found. Cannot retry cleanup without provider configuration.`);
|
|
1877
1877
|
}
|
|
1878
|
-
const config = await
|
|
1878
|
+
const config = await chunkUM7RXADM_cjs.loadIntellitesterConfig(CONFIG_FILENAME);
|
|
1879
1879
|
const failedCleanups = await chunkARJYJVRM_cjs.loadFailedCleanups(process2__default.default.cwd());
|
|
1880
1880
|
if (failedCleanups.length === 0) {
|
|
1881
1881
|
console.log("No failed cleanups to retry.");
|
package/dist/cli/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { loadIntellitesterConfig, isPipelineFile, isWorkflowFile, isPipelineContent, isWorkflowContent, loadTestDefinition, collectMissingEnvVars, loadPipelineDefinition, loadWorkflowDefinition, runWorkflow, runWebTest, startTrackingServer, startWebServer, createTestContext, setupAppwriteTracking, runWorkflowWithContext, killServer, createAIProvider, TestDefinitionSchema } from '../chunk-
|
|
2
|
+
import { loadIntellitesterConfig, isPipelineFile, isWorkflowFile, isPipelineContent, isWorkflowContent, loadTestDefinition, collectMissingEnvVars, loadPipelineDefinition, loadWorkflowDefinition, runWorkflow, runWebTest, startTrackingServer, startWebServer, createTestContext, setupAppwriteTracking, runWorkflowWithContext, killServer, createAIProvider, TestDefinitionSchema } from '../chunk-BYSKHSJB.js';
|
|
3
3
|
import { loadFailedCleanups, loadCleanupHandlers, executeCleanup, removeFailedCleanup } from '../chunk-ECBA4GJ3.js';
|
|
4
4
|
import '../chunk-DE5UFTTG.js';
|
|
5
5
|
import '../chunk-6PYKWWH5.js';
|
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkUM7RXADM_cjs = require('./chunk-UM7RXADM.cjs');
|
|
4
4
|
require('./chunk-ARJYJVRM.cjs');
|
|
5
5
|
require('./chunk-QMYM2TCH.cjs');
|
|
6
6
|
require('./chunk-PAKODOH4.cjs');
|
|
@@ -12,111 +12,111 @@ require('./chunk-35WJGNDA.cjs');
|
|
|
12
12
|
|
|
13
13
|
Object.defineProperty(exports, "ActionSchema", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkUM7RXADM_cjs.ActionSchema; }
|
|
16
16
|
});
|
|
17
17
|
Object.defineProperty(exports, "IntellitesterConfigSchema", {
|
|
18
18
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunkUM7RXADM_cjs.IntellitesterConfigSchema; }
|
|
20
20
|
});
|
|
21
21
|
Object.defineProperty(exports, "LocatorSchema", {
|
|
22
22
|
enumerable: true,
|
|
23
|
-
get: function () { return
|
|
23
|
+
get: function () { return chunkUM7RXADM_cjs.LocatorSchema; }
|
|
24
24
|
});
|
|
25
25
|
Object.defineProperty(exports, "TestConfigSchema", {
|
|
26
26
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
27
|
+
get: function () { return chunkUM7RXADM_cjs.TestConfigSchema; }
|
|
28
28
|
});
|
|
29
29
|
Object.defineProperty(exports, "TestDefinitionSchema", {
|
|
30
30
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
31
|
+
get: function () { return chunkUM7RXADM_cjs.TestDefinitionSchema; }
|
|
32
32
|
});
|
|
33
33
|
Object.defineProperty(exports, "cleanupConfigSchema", {
|
|
34
34
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
35
|
+
get: function () { return chunkUM7RXADM_cjs.cleanupConfigSchema; }
|
|
36
36
|
});
|
|
37
37
|
Object.defineProperty(exports, "cleanupDiscoverSchema", {
|
|
38
38
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
39
|
+
get: function () { return chunkUM7RXADM_cjs.cleanupDiscoverSchema; }
|
|
40
40
|
});
|
|
41
41
|
Object.defineProperty(exports, "collectMissingEnvVars", {
|
|
42
42
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
43
|
+
get: function () { return chunkUM7RXADM_cjs.collectMissingEnvVars; }
|
|
44
44
|
});
|
|
45
45
|
Object.defineProperty(exports, "isPipelineContent", {
|
|
46
46
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
47
|
+
get: function () { return chunkUM7RXADM_cjs.isPipelineContent; }
|
|
48
48
|
});
|
|
49
49
|
Object.defineProperty(exports, "isPipelineFile", {
|
|
50
50
|
enumerable: true,
|
|
51
|
-
get: function () { return
|
|
51
|
+
get: function () { return chunkUM7RXADM_cjs.isPipelineFile; }
|
|
52
52
|
});
|
|
53
53
|
Object.defineProperty(exports, "isWorkflowContent", {
|
|
54
54
|
enumerable: true,
|
|
55
|
-
get: function () { return
|
|
55
|
+
get: function () { return chunkUM7RXADM_cjs.isWorkflowContent; }
|
|
56
56
|
});
|
|
57
57
|
Object.defineProperty(exports, "isWorkflowFile", {
|
|
58
58
|
enumerable: true,
|
|
59
|
-
get: function () { return
|
|
59
|
+
get: function () { return chunkUM7RXADM_cjs.isWorkflowFile; }
|
|
60
60
|
});
|
|
61
61
|
Object.defineProperty(exports, "killServer", {
|
|
62
62
|
enumerable: true,
|
|
63
|
-
get: function () { return
|
|
63
|
+
get: function () { return chunkUM7RXADM_cjs.killServer; }
|
|
64
64
|
});
|
|
65
65
|
Object.defineProperty(exports, "loadIntellitesterConfig", {
|
|
66
66
|
enumerable: true,
|
|
67
|
-
get: function () { return
|
|
67
|
+
get: function () { return chunkUM7RXADM_cjs.loadIntellitesterConfig; }
|
|
68
68
|
});
|
|
69
69
|
Object.defineProperty(exports, "loadPipelineDefinition", {
|
|
70
70
|
enumerable: true,
|
|
71
|
-
get: function () { return
|
|
71
|
+
get: function () { return chunkUM7RXADM_cjs.loadPipelineDefinition; }
|
|
72
72
|
});
|
|
73
73
|
Object.defineProperty(exports, "loadTestDefinition", {
|
|
74
74
|
enumerable: true,
|
|
75
|
-
get: function () { return
|
|
75
|
+
get: function () { return chunkUM7RXADM_cjs.loadTestDefinition; }
|
|
76
76
|
});
|
|
77
77
|
Object.defineProperty(exports, "loadWorkflowDefinition", {
|
|
78
78
|
enumerable: true,
|
|
79
|
-
get: function () { return
|
|
79
|
+
get: function () { return chunkUM7RXADM_cjs.loadWorkflowDefinition; }
|
|
80
80
|
});
|
|
81
81
|
Object.defineProperty(exports, "parseIntellitesterConfig", {
|
|
82
82
|
enumerable: true,
|
|
83
|
-
get: function () { return
|
|
83
|
+
get: function () { return chunkUM7RXADM_cjs.parseIntellitesterConfig; }
|
|
84
84
|
});
|
|
85
85
|
Object.defineProperty(exports, "parsePipelineDefinition", {
|
|
86
86
|
enumerable: true,
|
|
87
|
-
get: function () { return
|
|
87
|
+
get: function () { return chunkUM7RXADM_cjs.parsePipelineDefinition; }
|
|
88
88
|
});
|
|
89
89
|
Object.defineProperty(exports, "parseTestDefinition", {
|
|
90
90
|
enumerable: true,
|
|
91
|
-
get: function () { return
|
|
91
|
+
get: function () { return chunkUM7RXADM_cjs.parseTestDefinition; }
|
|
92
92
|
});
|
|
93
93
|
Object.defineProperty(exports, "parseWorkflowDefinition", {
|
|
94
94
|
enumerable: true,
|
|
95
|
-
get: function () { return
|
|
95
|
+
get: function () { return chunkUM7RXADM_cjs.parseWorkflowDefinition; }
|
|
96
96
|
});
|
|
97
97
|
Object.defineProperty(exports, "previewConfigSchema", {
|
|
98
98
|
enumerable: true,
|
|
99
|
-
get: function () { return
|
|
99
|
+
get: function () { return chunkUM7RXADM_cjs.previewConfigSchema; }
|
|
100
100
|
});
|
|
101
101
|
Object.defineProperty(exports, "runWebTest", {
|
|
102
102
|
enumerable: true,
|
|
103
|
-
get: function () { return
|
|
103
|
+
get: function () { return chunkUM7RXADM_cjs.runWebTest; }
|
|
104
104
|
});
|
|
105
105
|
Object.defineProperty(exports, "runWorkflow", {
|
|
106
106
|
enumerable: true,
|
|
107
|
-
get: function () { return
|
|
107
|
+
get: function () { return chunkUM7RXADM_cjs.runWorkflow; }
|
|
108
108
|
});
|
|
109
109
|
Object.defineProperty(exports, "runWorkflowWithContext", {
|
|
110
110
|
enumerable: true,
|
|
111
|
-
get: function () { return
|
|
111
|
+
get: function () { return chunkUM7RXADM_cjs.runWorkflowWithContext; }
|
|
112
112
|
});
|
|
113
113
|
Object.defineProperty(exports, "setupAppwriteTracking", {
|
|
114
114
|
enumerable: true,
|
|
115
|
-
get: function () { return
|
|
115
|
+
get: function () { return chunkUM7RXADM_cjs.setupAppwriteTracking; }
|
|
116
116
|
});
|
|
117
117
|
Object.defineProperty(exports, "startWebServer", {
|
|
118
118
|
enumerable: true,
|
|
119
|
-
get: function () { return
|
|
119
|
+
get: function () { return chunkUM7RXADM_cjs.startWebServer; }
|
|
120
120
|
});
|
|
121
121
|
//# sourceMappingURL=index.cjs.map
|
|
122
122
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActionSchema, IntellitesterConfigSchema, LocatorSchema, TestConfigSchema, TestDefinitionSchema, cleanupConfigSchema, cleanupDiscoverSchema, collectMissingEnvVars, isPipelineContent, isPipelineFile, isWorkflowContent, isWorkflowFile, killServer, loadIntellitesterConfig, loadPipelineDefinition, loadTestDefinition, loadWorkflowDefinition, parseIntellitesterConfig, parsePipelineDefinition, parseTestDefinition, parseWorkflowDefinition, previewConfigSchema, runWebTest, runWorkflow, runWorkflowWithContext, setupAppwriteTracking, startWebServer } from './chunk-
|
|
1
|
+
export { ActionSchema, IntellitesterConfigSchema, LocatorSchema, TestConfigSchema, TestDefinitionSchema, cleanupConfigSchema, cleanupDiscoverSchema, collectMissingEnvVars, isPipelineContent, isPipelineFile, isWorkflowContent, isWorkflowFile, killServer, loadIntellitesterConfig, loadPipelineDefinition, loadTestDefinition, loadWorkflowDefinition, parseIntellitesterConfig, parsePipelineDefinition, parseTestDefinition, parseWorkflowDefinition, previewConfigSchema, runWebTest, runWorkflow, runWorkflowWithContext, setupAppwriteTracking, startWebServer } from './chunk-BYSKHSJB.js';
|
|
2
2
|
import './chunk-ECBA4GJ3.js';
|
|
3
3
|
import './chunk-DE5UFTTG.js';
|
|
4
4
|
import './chunk-6PYKWWH5.js';
|
package/package.json
CHANGED