/
githubmirror
/
pixijs
Обзор
Документация
Войти
/
githubmirror
/
pixijs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
playground/src/scenes/testUtilsShim.ts
9 строк
306 B
Mat Groves
chore: Add PixiJS development playground (#11878)
12 фев 2026, 18:26
Не верифицирован
12 фев 2026, 18:26
d0c73cf
Код
Авторство
О чём код?
// Browser-compatible shim for @test-utils used by some visual test scenes. // In the playground, assets are served via /test-utils-assets/ middleware. export const basePath = '/test-utils-assets/'; export const isCI = false; export function getAsset(file: string): string { return basePath + file; }