summaryrefslogtreecommitdiffstats
path: root/tools/lint/eslint/eslint-plugin-mozilla/tests/reject-top-level-await.js
blob: 537deb9ac8d5e2207060afab95d2054eee1fbdfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* 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 []) {}"),
  ],
});