single-file-cli 2.9.0 → 2.9.1

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/lib/version.js CHANGED
@@ -1 +1 @@
1
- export const version = "2.9.0";
1
+ export const version = "2.9.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "single-file-cli",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
4
4
  "description": "SingleFile CLI",
5
5
  "author": "Gildas Lormeau",
6
6
  "license": "AGPL-3.0-or-later",
@@ -24,7 +24,7 @@ import { tmpdir } from "node:os";
24
24
  import { join, dirname } from "node:path";
25
25
  import { pathToFileURL, fileURLToPath } from "node:url";
26
26
  import process from "node:process";
27
- import { cliDirectory, importLibModule, useDevBuild, firefox } from "../target.js";
27
+ import { cliDirectory, importLibModule, useDevBuild } from "../target.js";
28
28
  import { openBrowser } from "../fidelity/browser.js";
29
29
  import { startServer } from "../fidelity/server.js";
30
30
  const { configure, ZipReader, Uint8ArrayReader, TextWriter } = await importLibModule("single-file-archive.js");
@@ -134,7 +134,7 @@ function getDeclaredFontFamilies(saved) {
134
134
  });
135
135
  }
136
136
 
137
- test("a saved page keeps the fonts declared inside a frame it cannot read", { ...options, skip: skip || (firefox && "the font declared by a sandboxed srcdoc frame is lost on Firefox, see the SingleFile backlog") }, async () => {
137
+ test("a saved page keeps the fonts declared inside a frame it cannot read", options, async () => {
138
138
  const { comparison, noise } = await compareSaveWithSource("frame-fonts", []);
139
139
  assertNoWorseThanNoise(comparison, noise);
140
140
  });