mirror of
https://github.com/go-gitea/gitea.git
synced 2026-04-11 19:03:10 +09:00
1. Filter out errors that contain `chrome-extension://` etc protocols 2. Extract filtering into its own function and test it 3. Fix the `window.config.assetUrlPrefix` mock, guaranteed to end with `/assets` 4. Remove useless `??` and `?.` for properties that always exist Co-authored-by: Claude (Opus 4.6) <noreply@anthropic.com>
28 lines
892 B
TypeScript
28 lines
892 B
TypeScript
// Stub APIs not implemented by happy-dom but needed by dependencies
|
|
// XPathEvaluator is used by htmx at module evaluation time
|
|
// TODO: Remove after https://github.com/capricorn86/happy-dom/pull/2103 is released
|
|
if (!globalThis.XPathEvaluator) {
|
|
globalThis.XPathEvaluator = class {
|
|
createExpression() { return {evaluate: () => ({iterateNext: () => null})} }
|
|
} as any;
|
|
}
|
|
|
|
// Dynamic import so polyfills above are applied before htmx evaluates
|
|
await import('./globals.ts');
|
|
|
|
window.config = {
|
|
appUrl: 'http://localhost:3000/',
|
|
appSubUrl: '',
|
|
assetUrlPrefix: '/assets',
|
|
sharedWorkerUri: '',
|
|
runModeIsProd: true,
|
|
customEmojis: {},
|
|
pageData: {},
|
|
notificationSettings: {MinTimeout: 0, TimeoutStep: 0, MaxTimeout: 0, EventSourceUpdateTime: 0},
|
|
enableTimeTracking: true,
|
|
mermaidMaxSourceCharacters: 5000,
|
|
i18n: {},
|
|
};
|
|
|
|
export {}; // mark as module for top-level await
|