summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/html/semantics/scripting-1/the-script-element/support/async_test_module_circular_3.js
blob: d815bc00e41e342ab12d6b45b52d783811adf01d (plain)
1
2
3
4
5
6
7
8
import module from './async_test_module_circular_1.js';

export default {
  async test() {
    throw new Error("error thrown");
    return Promise.resolve()
  }
};