@nexusclawhq/cli 0.3.34 → 0.3.36
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/CHANGELOG.md +18 -0
- package/dist/build-info.json +4 -4
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.d.ts +3 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js +3 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/en-US.js.map +1 -1
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/index.d.ts +6 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.d.ts +3 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js +3 -0
- package/dist/nexus-cli/node_modules/@nexusclaw/shared/dist/locales/zh-CN.js.map +1 -1
- package/dist/nexus-cli/src/commands/metadata/import.d.ts +2 -0
- package/dist/nexus-cli/src/commands/metadata/import.js +7 -1
- package/dist/nexus-cli/src/commands/metadata/import.js.map +1 -1
- package/dist/nexus-cli/src/commands/metadata/import.test.d.ts +1 -0
- package/dist/nexus-cli/src/commands/metadata/import.test.js +38 -0
- package/dist/nexus-cli/src/commands/metadata/import.test.js.map +1 -0
- package/dist/nexus-cli/src/services/api-client.js +4 -1
- package/dist/nexus-cli/src/services/api-client.js.map +1 -1
- package/dist/nexus-cli/src/services/api-client.test.js +59 -0
- package/dist/nexus-cli/src/services/api-client.test.js.map +1 -1
- package/dist/nexus-cli/src/services/workforce-bundle-remote.d.ts +1 -0
- package/dist/nexus-cli/src/services/workforce-bundle-remote.js +9 -1
- package/dist/nexus-cli/src/services/workforce-bundle-remote.js.map +1 -1
- package/dist/nexus-cli/src/services/workforce-bundle-remote.test.d.ts +1 -0
- package/dist/nexus-cli/src/services/workforce-bundle-remote.test.js +23 -0
- package/dist/nexus-cli/src/services/workforce-bundle-remote.test.js.map +1 -0
- package/dist/nexus-cli/src/services/workforce-test-remote.d.ts +1 -1
- package/dist/nexus-cli/src/services/workforce-test-remote.js +1 -1
- package/dist/nexus-cli/src/services/workforce-test-remote.test.js +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -2
|
@@ -28,6 +28,7 @@ export declare function prepareRemoteWorkforceBundle(options: {
|
|
|
28
28
|
readonly expectedPortableBundleDigest: `sha256:${string}`;
|
|
29
29
|
};
|
|
30
30
|
}>;
|
|
31
|
+
export declare function assertWorkforceBundleStageContext(context: Pick<VerifyAiAuthoringContextFreshnessRequestV2, 'surface' | 'selector'>): void;
|
|
31
32
|
export declare function validateRemoteWorkforceBundle(options: {
|
|
32
33
|
readonly bundleDir: string;
|
|
33
34
|
readonly contextManifestPath: string;
|
|
@@ -4,6 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.prepareRemoteWorkforceBundle = prepareRemoteWorkforceBundle;
|
|
7
|
+
exports.assertWorkforceBundleStageContext = assertWorkforceBundleStageContext;
|
|
7
8
|
exports.validateRemoteWorkforceBundle = validateRemoteWorkforceBundle;
|
|
8
9
|
exports.lockRemoteWorkforceBundle = lockRemoteWorkforceBundle;
|
|
9
10
|
exports.planRemoteWorkforceBundle = planRemoteWorkforceBundle;
|
|
@@ -16,11 +17,12 @@ const api_client_1 = require("./api-client");
|
|
|
16
17
|
const ai_authoring_context_v2_1 = require("./ai-authoring-context-v2");
|
|
17
18
|
const workforce_bundle_archive_1 = require("./workforce-bundle-archive");
|
|
18
19
|
async function prepareRemoteWorkforceBundle(options) {
|
|
20
|
+
const authoringContext = (0, ai_authoring_context_v2_1.loadAuthoringContextFreshnessInput)(options.contextManifestPath);
|
|
21
|
+
assertWorkforceBundleStageContext(authoringContext);
|
|
19
22
|
await (0, ai_authoring_context_v2_1.verifyAuthoringContextV2)({
|
|
20
23
|
manifestPath: options.contextManifestPath,
|
|
21
24
|
targetOrg: options.targetOrg,
|
|
22
25
|
});
|
|
23
|
-
const authoringContext = (0, ai_authoring_context_v2_1.loadAuthoringContextFreshnessInput)(options.contextManifestPath);
|
|
24
26
|
const archive = await (0, workforce_bundle_archive_1.buildCanonicalWorkforceBundleArchive)({
|
|
25
27
|
bundleDir: options.bundleDir,
|
|
26
28
|
targetOrgAlias: options.targetOrg,
|
|
@@ -59,6 +61,12 @@ async function prepareRemoteWorkforceBundle(options) {
|
|
|
59
61
|
};
|
|
60
62
|
return { client, authoringContext, archive, sealed, artifactInput };
|
|
61
63
|
}
|
|
64
|
+
function assertWorkforceBundleStageContext(context) {
|
|
65
|
+
if (context.surface !== 'all' || context.selector.kind !== 'caller_preview') {
|
|
66
|
+
throw new Error('WORKFORCE_BUNDLE_CONTEXT_ALL_CALLER_PREVIEW_REQUIRED: ' +
|
|
67
|
+
'export a fresh context with --surface all --caller-preview before bundle validate');
|
|
68
|
+
}
|
|
69
|
+
}
|
|
62
70
|
async function validateRemoteWorkforceBundle(options) {
|
|
63
71
|
const prepared = await prepareRemoteWorkforceBundle(options);
|
|
64
72
|
const validation = await prepared.client.validateExecutablePackageArtifact({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workforce-bundle-remote.js","sourceRoot":"","sources":["../../../../src/services/workforce-bundle-remote.ts"],"names":[],"mappings":";;;;;AAkBA,
|
|
1
|
+
{"version":3,"file":"workforce-bundle-remote.js","sourceRoot":"","sources":["../../../../src/services/workforce-bundle-remote.ts"],"names":[],"mappings":";;;;;AAkBA,oEAsDC;AAED,8EASC;AAED,sEAyBC;AAED,8DAqBC;AAED,8DAmBC;AAED,gEAkBC;AA9KD,6CAAyC;AACzC,sDAAyB;AACzB,0DAA6B;AAC7B,8CAI2B;AAC3B,6CAGsB;AACtB,uEAGmC;AACnC,yEAAkF;AAE3E,KAAK,UAAU,4BAA4B,CAAC,OAIlD;IACC,MAAM,gBAAgB,GAAG,IAAA,4DAAkC,EACzD,OAAO,CAAC,mBAAmB,CAC5B,CAAC;IACF,iCAAiC,CAAC,gBAAgB,CAAC,CAAC;IACpD,MAAM,IAAA,kDAAwB,EAAC;QAC7B,YAAY,EAAE,OAAO,CAAC,mBAAmB;QACzC,SAAS,EAAE,OAAO,CAAC,SAAS;KAC7B,CAAC,CAAC;IACH,MAAM,OAAO,GAAG,MAAM,IAAA,+DAAoC,EAAC;QACzD,SAAS,EAAE,OAAO,CAAC,SAAS;QAC5B,cAAc,EAAE,OAAO,CAAC,SAAS;KAClC,CAAC,CAAC;IACH,MAAM,MAAM,GAAG,IAAA,4BAAe,EAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAClD,MAAM,oBAAoB,GAAG,IAAA,wBAAU,GAAE,CAAC;IAC1C,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,oCAAoC,CAC/D;QACE,aAAa,EACX,6DAA6D;QAC/D,iBAAiB,EAAE,gBAAgB,CAAC,iBAAiB;QACrD,aAAa,EAAE,cAAc;QAC7B,aAAa,EAAE,OAAO,CAAC,aAAa;QACpC,aAAa,EAAE,OAAO,CAAC,aAAa;QACpC,gBAAgB,EAAE,OAAO,CAAC,YAAY,CAAC,UAAU;QACjD,SAAS,EAAE,OAAO,CAAC,SAAS;QAC5B,gBAAgB,EAAE,OAAO,CAAC,gBAAgB;KAC3C,EACD,oBAAoB,CACrB,CAAC;IACF,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,+BAA+B,CAAC;QAC1D,iBAAiB,EAAE,gBAAgB,CAAC,iBAAiB;QACrD,eAAe,EAAE,OAAO,CAAC,eAAe;QACxC,KAAK,EAAE,OAAO,CAAC,YAAY;QAC3B,aAAa,EAAE,OAAO,CAAC,aAAa;QACpC,aAAa,EAAE,OAAO,CAAC,aAAa;QACpC,cAAc,EAAE,oBAAoB;QACpC,aAAa,EAAE,OAAO,CAAC,aAAa;QACpC,cAAc,EAAE,OAAO,CAAC,cAAc;KACvC,CAAC,CAAC;IACH,MAAM,aAAa,GAAG;QACpB,aAAa,EAAE,wDAAwD;QACvE,iBAAiB,EAAE,gBAAgB,CAAC,iBAAiB;QACrD,gBAAgB,EAAE,MAAM,CAAC,gBAAgB;QACzC,qBAAqB,EAAE,OAAO,CAAC,aAAa;QAC5C,qBAAqB,EAAE,OAAO,CAAC,aAAa;QAC5C,4BAA4B,EAAE,gBAAgB,CAAC,qBAAqB;QACpE,qBAAqB,EAAE,OAAO,CAAC,qBAAqB;QACpD,4BAA4B,EAAE,OAAO,CAAC,oBAAoB;KAClD,CAAC;IACX,OAAO,EAAE,MAAM,EAAE,gBAAgB,EAAE,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,CAAC;AACtE,CAAC;AAED,SAAgB,iCAAiC,CAC/C,OAAiF;IAEjF,IAAI,OAAO,CAAC,OAAO,KAAK,KAAK,IAAI,OAAO,CAAC,QAAQ,CAAC,IAAI,KAAK,gBAAgB,EAAE,CAAC;QAC5E,MAAM,IAAI,KAAK,CACb,wDAAwD;YACxD,mFAAmF,CACpF,CAAC;IACJ,CAAC;AACH,CAAC;AAEM,KAAK,UAAU,6BAA6B,CAAC,OAInD;IACC,MAAM,QAAQ,GAAG,MAAM,4BAA4B,CAAC,OAAO,CAAC,CAAC;IAC7D,MAAM,UAAU,GAAG,MAAM,QAAQ,CAAC,MAAM,CAAC,iCAAiC,CAAC;QACzE,aAAa,EAAE,oDAA2C;QAC1D,iBAAiB,EAAE,QAAQ,CAAC,aAAa,CAAC,iBAAiB;QAC3D,gBAAgB,EAAE,QAAQ,CAAC,aAAa,CAAC,gBAAgB;QACzD,qBAAqB,EAAE,QAAQ,CAAC,aAAa,CAAC,qBAAqB;QACnE,qBAAqB,EAAE,QAAQ,CAAC,aAAa,CAAC,qBAAqB;QACnE,4BAA4B,EAC1B,QAAQ,CAAC,aAAa,CAAC,4BAA4B;KACtD,CAAC,CAAC;IACH,IAAI,UAAU,CAAC,KAAK,EAAE,CAAC;QACrB,eAAe,CAAC,OAAO,CAAC,SAAS,EAAE;YACjC,aAAa,EAAE,4CAA4C;YAC3D,SAAS,EAAE,OAAO,CAAC,SAAS;YAC5B,mBAAmB,EAAE,mBAAI,CAAC,OAAO,CAAC,OAAO,CAAC,mBAAmB,CAAC;YAC9D,aAAa,EAAE,QAAQ,CAAC,aAAa;YACrC,gBAAgB,EAAE,QAAQ,CAAC,gBAAgB;SAC5C,CAAC,CAAC;IACL,CAAC;IACD,OAAO,UAAU,CAAC;AACpB,CAAC;AAEM,KAAK,UAAU,yBAAyB,CAAC,OAG/C;IACC,MAAM,KAAK,GAAG,eAAe,CAAC,OAAO,CAAC,SAAS,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;IACpE,MAAM,IAAA,kDAAwB,EAAC;QAC7B,YAAY,EAAE,KAAK,CAAC,mBAAmB;QACvC,SAAS,EAAE,OAAO,CAAC,SAAS;KAC7B,CAAC,CAAC;IACH,MAAM,IAAI,GAAG,MAAM,IAAA,4BAAe,EAAC,OAAO,CAAC,SAAS,CAAC,CAAC,0BAA0B,CAAC;QAC/E,GAAG,KAAK,CAAC,aAAa;QACtB,aAAa,EAAE,kDAAkD;KAClE,CAAC,CAAC;IACH,MAAM,QAAQ,GAAG,mBAAI,CAAC,IAAI,CACxB,mBAAI,CAAC,OAAO,CAAC,OAAO,CAAC,SAAS,CAAC,EAC/B,YAAY,EACZ,4BAA4B,CAC7B,CAAC;IACF,iBAAE,CAAC,SAAS,CAAC,mBAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC1D,iBAAE,CAAC,aAAa,CAAC,QAAQ,EAAE,GAAG,IAAA,4BAAmB,EAAC,IAAa,CAAC,IAAI,CAAC,CAAC;IACtE,OAAO,IAAI,CAAC;AACd,CAAC;AAEM,KAAK,UAAU,yBAAyB,CAAC,OAK/C;IACC,MAAM,KAAK,GAAG,eAAe,CAAC,OAAO,CAAC,SAAS,EAAE,OAAO,CAAC,SAAS,CAAC,CAAC;IACpE,MAAM,IAAA,kDAAwB,EAAC;QAC7B,YAAY,EAAE,KAAK,CAAC,mBAAmB;QACvC,SAAS,EAAE,OAAO,CAAC,SAAS;KAC7B,CAAC,CAAC;IACH,MAAM,MAAM,GAAG,IAAA,4BAAe,EAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAClD,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,6BAA6B,CAAC;QACtD,GAAG,KAAK,CAAC,aAAa;QACtB,aAAa,EAAE,qDAAqD;QACpE,0BAA0B,EAAE,OAAO,CAAC,0BAA0B;QAC9D,kBAAkB,EAAE,OAAO,CAAC,kBAAkB;KAC/C,CAAC,CAAC;IACH,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AACjC,CAAC;AAEM,KAAK,UAAU,0BAA0B,CAAC,OAKhD;IACC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,MAAM,yBAAyB,CAAC,OAAO,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,8BAA8B,CAC1C;QACE,GAAG,KAAK,CAAC,aAAa;QACtB,aAAa,EAAE,sDAAsD;QACrE,0BAA0B,EAAE,OAAO,CAAC,0BAA0B;QAC9D,kBAAkB,EAAE,OAAO,CAAC,kBAAkB;QAC9C,UAAU,EAAE,IAAI,CAAC,UAAU;QAC3B,gBAAgB,EAAE,KAAK,CAAC,gBAAgB;KACzC,EACD,IAAA,wBAAU,GAAE,CACb,CAAC;AACJ,CAAC;AAUD,SAAS,eAAe,CACtB,SAAiB,EACjB,KAAiC;IAEjC,MAAM,SAAS,GAAG,eAAe,CAAC,SAAS,CAAC,CAAC;IAC7C,iBAAE,CAAC,SAAS,CAAC,mBAAI,CAAC,OAAO,CAAC,SAAS,CAAC,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC3D,iBAAE,CAAC,aAAa,CACd,SAAS,EACT,GAAG,IAAA,4BAAmB,EAAC,KAAc,CAAC,IAAI,EAC1C,EAAE,IAAI,EAAE,KAAK,EAAE,CAChB,CAAC;AACJ,CAAC;AAED,SAAS,eAAe,CACtB,SAAiB,EACjB,SAAiB;IAEjB,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CACtB,iBAAE,CAAC,YAAY,CAAC,eAAe,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC,CACtB,CAAC;IAChC,IACE,KAAK,CAAC,aAAa;QACjB,4CAA4C;QAC9C,KAAK,CAAC,SAAS,KAAK,SAAS,EAC7B,CAAC;QACD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;IAC3D,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC;AAED,SAAS,eAAe,CAAC,SAAiB;IACxC,OAAO,mBAAI,CAAC,IAAI,CACd,mBAAI,CAAC,OAAO,CAAC,SAAS,CAAC,EACvB,YAAY,EACZ,6BAA6B,CAC9B,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const strict_1 = __importDefault(require("node:assert/strict"));
|
|
7
|
+
const node_test_1 = __importDefault(require("node:test"));
|
|
8
|
+
const workforce_bundle_remote_1 = require("./workforce-bundle-remote");
|
|
9
|
+
(0, node_test_1.default)('remote bundle preparation requires the frozen all-surface caller-preview context', () => {
|
|
10
|
+
strict_1.default.doesNotThrow(() => (0, workforce_bundle_remote_1.assertWorkforceBundleStageContext)({
|
|
11
|
+
surface: 'all',
|
|
12
|
+
selector: { kind: 'caller_preview' },
|
|
13
|
+
}));
|
|
14
|
+
strict_1.default.throws(() => (0, workforce_bundle_remote_1.assertWorkforceBundleStageContext)({
|
|
15
|
+
surface: 'employee',
|
|
16
|
+
selector: { kind: 'caller_preview' },
|
|
17
|
+
}), /WORKFORCE_BUNDLE_CONTEXT_ALL_CALLER_PREVIEW_REQUIRED.*--surface all --caller-preview/);
|
|
18
|
+
strict_1.default.throws(() => (0, workforce_bundle_remote_1.assertWorkforceBundleStageContext)({
|
|
19
|
+
surface: 'all',
|
|
20
|
+
selector: { kind: 'active_agent', agentApiName: 'MedtechSalesRep' },
|
|
21
|
+
}), /WORKFORCE_BUNDLE_CONTEXT_ALL_CALLER_PREVIEW_REQUIRED/);
|
|
22
|
+
});
|
|
23
|
+
//# sourceMappingURL=workforce-bundle-remote.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workforce-bundle-remote.test.js","sourceRoot":"","sources":["../../../../src/services/workforce-bundle-remote.test.ts"],"names":[],"mappings":";;;;;AAAA,gEAAwC;AACxC,0DAA6B;AAE7B,uEAA8E;AAE9E,IAAA,mBAAI,EAAC,kFAAkF,EAAE,GAAG,EAAE;IAC5F,gBAAM,CAAC,YAAY,CAAC,GAAG,EAAE,CAAC,IAAA,2DAAiC,EAAC;QAC1D,OAAO,EAAE,KAAK;QACd,QAAQ,EAAE,EAAE,IAAI,EAAE,gBAAgB,EAAE;KACrC,CAAC,CAAC,CAAC;IACJ,gBAAM,CAAC,MAAM,CACX,GAAG,EAAE,CAAC,IAAA,2DAAiC,EAAC;QACtC,OAAO,EAAE,UAAU;QACnB,QAAQ,EAAE,EAAE,IAAI,EAAE,gBAAgB,EAAE;KACrC,CAAC,EACF,sFAAsF,CACvF,CAAC;IACF,gBAAM,CAAC,MAAM,CACX,GAAG,EAAE,CAAC,IAAA,2DAAiC,EAAC;QACtC,OAAO,EAAE,KAAK;QACd,QAAQ,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE,YAAY,EAAE,iBAAiB,EAAE;KACpE,CAAC,EACF,sDAAsD,CACvD,CAAC;AACJ,CAAC,CAAC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const WORKFORCE_TEST_CLI_VERSION = "0.3.
|
|
1
|
+
export declare const WORKFORCE_TEST_CLI_VERSION = "0.3.36";
|
|
2
2
|
export declare function assertWorkforceTestCompatibility(compatibilityVersion: string): void;
|
|
3
3
|
export declare const WORKFORCE_TEST_REGRESSION_QUERY = "\nquery AgentTestRegression($agentId: ID!, $suiteRunId: ID!) {\n agentTestRegression(agentId: $agentId, suiteRunId: $suiteRunId) { suiteRunId current baseline deltas }\n}";
|
|
4
4
|
export interface WorkforceTestSuiteMetrics {
|
|
@@ -12,7 +12,7 @@ exports.listTestResultsRemote = listTestResultsRemote;
|
|
|
12
12
|
exports.getTestBaselineRemote = getTestBaselineRemote;
|
|
13
13
|
exports.getTestRegressionRemote = getTestRegressionRemote;
|
|
14
14
|
const api_client_1 = require("./api-client");
|
|
15
|
-
exports.WORKFORCE_TEST_CLI_VERSION = '0.3.
|
|
15
|
+
exports.WORKFORCE_TEST_CLI_VERSION = '0.3.36';
|
|
16
16
|
function parseCompatibilityVersion(version) {
|
|
17
17
|
const match = /^(\d+)\.(\d+)\.(\d+)$/.exec(version.trim());
|
|
18
18
|
if (!match)
|
|
@@ -22,10 +22,10 @@ const workforce_test_remote_1 = require("./workforce-test-remote");
|
|
|
22
22
|
strict_1.default.throws(() => (0, workforce_test_remote_1.assertWorkforceTestCompatibility)('unknown'), /did not publish cliCompatibilityVersion/);
|
|
23
23
|
});
|
|
24
24
|
(0, node_test_1.default)('evaluation preflight blocks a mismatched CLI/Core contract', () => {
|
|
25
|
-
strict_1.default.throws(() => (0, workforce_test_remote_1.assertWorkforceTestCompatibility)('0.4.0'), /CLI 0.3.
|
|
25
|
+
strict_1.default.throws(() => (0, workforce_test_remote_1.assertWorkforceTestCompatibility)('0.4.0'), /CLI 0.3.36, Core requires 0.4.0/);
|
|
26
26
|
});
|
|
27
27
|
(0, node_test_1.default)('evaluation preflight blocks an older CLI than the Core patch contract', () => {
|
|
28
|
-
strict_1.default.throws(() => (0, workforce_test_remote_1.assertWorkforceTestCompatibility)('0.3.
|
|
28
|
+
strict_1.default.throws(() => (0, workforce_test_remote_1.assertWorkforceTestCompatibility)('0.3.37'), /CLI 0.3.36, Core requires 0.3.37/);
|
|
29
29
|
});
|
|
30
30
|
(0, node_test_1.default)('regression query matches the native Core report fields', () => {
|
|
31
31
|
strict_1.default.match(workforce_test_remote_1.WORKFORCE_TEST_REGRESSION_QUERY, /suiteRunId current baseline deltas/);
|