1
0
mirror of https://github.com/flarum/core.git synced 2025-08-13 20:04:24 +02:00

fix: tests

This commit is contained in:
Sami Mazouz
2024-11-09 11:14:01 +01:00
parent 1ebceab85a
commit 03fe885b56

View File

@@ -93,7 +93,7 @@ export default class ExportRegistry implements IExportRegistry, IChunkRegistry {
private _revisions: any = null;
private _webpack_runtimes: any = {
// @ts-ignore
core: __webpack_require__,
core: window.testing ? null : __webpack_require__,
};
add(namespace: string, id: string, object: any): void {