mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-02 18:22:42 -08:00
12 lines
455 B
TypeScript
12 lines
455 B
TypeScript
import test from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
|
|
test('overlay window config explicitly disables renderer sandbox for preload compatibility', () => {
|
|
const sourcePath = path.join(process.cwd(), 'src/core/services/overlay-window.ts');
|
|
const source = fs.readFileSync(sourcePath, 'utf8');
|
|
|
|
assert.match(source, /webPreferences:\s*\{[\s\S]*sandbox:\s*false[\s\S]*\}/m);
|
|
});
|