AUR1005
Error Message
Description
Example Trigger
import { Platform } from '@aurelia/platform';
// ❌ A mocked global without queueMicrotask
const g = { console } as unknown as typeof globalThis;
const platform = Platform.getOrCreate(g);
// Throws AUR1005 when invoked
platform.queueMicrotask(() => {});Correct Usage
Troubleshooting
Last updated
Was this helpful?