Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/automated-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
timeout-minutes: 30
strategy:
matrix:
node-version: [22.x, 24.x, 26.x]
node-version: [22.x, 24.x, 26.0.0]
steps:
- name: Install electron dependencies and labwc
run: |
Expand Down
4 changes: 4 additions & 0 deletions tests/utils/vitest-setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ const path = require("node:path");
// Set test mode flag for application code to detect test environment
process.env.mmTestMode = "true";

// overrides native implementation (Nodejs >= v25) to avoid warnings in tests
// "ExperimentalWarning: localStorage is not available because --localstorage-file was not provided."
Object.defineProperty(globalThis, "localStorage", { value: undefined, writable: true });

// Store the original require
const originalRequire = Module.prototype.require;

Expand Down
Loading