e39a72206d
- Экран загрузки (boot.html, bootWindow): статусы, ensureRoots и проверка лицензии, редактор после готовности; закрытие через destroy при closable:false. - Упакованное приложение на Windows: disableHardwareAcceleration, sandbox выкл. вне dev, отложенный показ редактора, ensureWindowBecomesVisible, фокус на splash при second-instance. - Vite: вход boot.html; eslint: игнор release/; тесты boot и maxFPS тикера. - Пульт: позиция курсора кисти через ref/DOM без setState на каждый move; черновик эффекта через rAF; Pixi: maxFPS 32, resolution cap, antialias off, debounce ResizeObserver, меньше частиц poisonCloud, contain на хосте. Made-with: Cursor
48 lines
1.9 KiB
TypeScript
48 lines
1.9 KiB
TypeScript
import assert from 'node:assert/strict';
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import test from 'node:test';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const here = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
function readCreateWindows(): string {
|
|
return fs.readFileSync(path.join(here, 'createWindows.ts'), 'utf8');
|
|
}
|
|
|
|
void test('createWindows: закрытие редактора завершает приложение', () => {
|
|
const src = readCreateWindows();
|
|
assert.match(src, /kind === 'editor'/);
|
|
assert.match(src, /win\.on\(\s*['"]close['"]/);
|
|
assert.ok(src.includes('appQuitting'));
|
|
assert.ok(src.includes('e.preventDefault()'));
|
|
assert.ok(src.includes('quitAppFromEditorClose') || src.includes('app.quit()'));
|
|
assert.ok(src.includes('markAppQuitting'));
|
|
});
|
|
|
|
void test('createWindows: иконка окна (pack PNG, затем window PNG; SVG только вне win32)', () => {
|
|
const src = readCreateWindows();
|
|
assert.ok(src.includes('resolveWindowIconPath'));
|
|
assert.ok(src.includes('app-pack-icon.png'));
|
|
assert.ok(src.includes('app-window-icon.png'));
|
|
assert.ok(src.includes('app-logo.svg'));
|
|
});
|
|
|
|
void test('createWindows: пульт поверх экрана просмотра (дочернее окно)', () => {
|
|
const src = readCreateWindows();
|
|
assert.ok(src.includes('parent: presentation'));
|
|
assert.ok(src.includes("createWindow('control'"));
|
|
});
|
|
|
|
void test('createWindows: production — loadFile для HTML (не только file://)', () => {
|
|
const src = readCreateWindows();
|
|
assert.ok(src.includes('loadFile'));
|
|
assert.ok(src.includes('loadWindowPage'));
|
|
});
|
|
|
|
void test('createWindows: показ окна — не только ready-to-show (холодный старт Windows)', () => {
|
|
const src = readCreateWindows();
|
|
assert.ok(src.includes('ensureWindowBecomesVisible'));
|
|
assert.ok(src.includes('did-finish-load'));
|
|
});
|