@abloh/core 0.1.2 → 0.1.3

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 (2) hide show
  1. package/dist/index.js +13 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4056,11 +4056,24 @@ var PROVIDER_RAW_FORMAT = {
4056
4056
  };
4057
4057
  var RUNNER_CAPABILITIES = [
4058
4058
  { runner: "jest", ecosystem: "js", layer0Providers: ["v8", "babel"], layer0Enabled: true, mutation: "stryker-plugin", perTestDrivable: true },
4059
+ // Vitest Layer-0 caveat: a CHANGED file outside the project's vitest `root` that no test imports
4060
+ // is invisible to vitest coverage on every version (measured on 2.1.9 and 3.2.4 with
4061
+ // coverage.all, allowExternal and explicit include globs). Abloh refuses to attest that run
4062
+ // (cannot-attest, "a requested changed file is missing from the coverage report") rather than
4063
+ // guessing a classification; mutation still measures the full scope in default mode. Decided
4064
+ // 2026-08-08; pinned by scripts/release-acceptance.mts steps 7-8.
4059
4065
  { runner: "vitest", ecosystem: "js", layer0Providers: ["v8"], layer0Enabled: true, mutation: "stryker-plugin", perTestDrivable: true },
4060
4066
  { runner: "mocha", ecosystem: "js", layer0Providers: ["c8"], layer0Enabled: true, mutation: "stryker-plugin", perTestDrivable: true },
4061
4067
  { runner: "node-test", ecosystem: "js", layer0Providers: ["c8"], layer0Enabled: true, mutation: "whole-suite-command", perTestDrivable: true },
4062
4068
  { runner: "ava", ecosystem: "js", layer0Providers: ["c8"], layer0Enabled: true, mutation: "whole-suite-command", perTestDrivable: true },
4063
4069
  { runner: "tap", ecosystem: "js", layer0Providers: ["c8"], layer0Enabled: true, mutation: "stryker-plugin", perTestDrivable: true },
4070
+ // Jasmine mutation is UNPROVEN and currently fails. Layer 0 measures a jasmine repository
4071
+ // correctly (1/1 covered, verified on a real npm install of 0.1.3), but Stryker's
4072
+ // jasmine-runner exits "No tests were executed" against a plain jasmine project, so the run
4073
+ // ends mutationExecution: not-run / engine-error and cannot-attest. The row stays
4074
+ // "stryker-plugin" because that IS the intended mechanism; making it true needs the runner
4075
+ // pointed at the suite (a generated jasmine.json). Found 2026-08-08 by the release-acceptance
4076
+ // runner sweep, which deliberately carries no jasmine fixture rather than pinning the failure.
4064
4077
  { runner: "jasmine", ecosystem: "js", layer0Providers: ["c8"], layer0Enabled: true, mutation: "stryker-plugin", perTestDrivable: true },
4065
4078
  // Layer 0 disabled: bun 1.3.14 reported an unexecuted line as covered and emits no per-function
4066
4079
  // records to correct with. "bun-lcov" stays recognized so historical artifacts validate.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abloh/core",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Abloh core: normalized results contract, diff scoping, policy, findings, scoring. \"name\" will publish under the @abloh scope.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE",