1
0
Fork 0
firefox/tools/lint/eslint/eslint-plugin-mozilla/tests/reject-top-level-await.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

36 lines
1.1 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// ------------------------------------------------------------------------------
// Requirements
// ------------------------------------------------------------------------------
var rule = require("../lib/rules/reject-top-level-await");
var RuleTester = require("eslint").RuleTester;
const ruleTester = new RuleTester({
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
});
// ------------------------------------------------------------------------------
// Tests
// ------------------------------------------------------------------------------
function invalidCode(code) {
return { code, errors: [{ messageId: "rejectTopLevelAwait" }] };
}
ruleTester.run("reject-top-level-await", rule, {
valid: [
"async() => { await bar() }",
"async() => { for await (let x of []) {} }",
],
invalid: [
invalidCode("await foo"),
invalidCode("{ await foo }"),
invalidCode("(await foo)"),
invalidCode("for await (let x of []) {}"),
],
});