Skip to content

Commit

Permalink
Reapply "feat: support ESM module (#2451)"
Browse files Browse the repository at this point in the history
This reverts commit 4962714.
  • Loading branch information
sadym-chromium committed Sep 11, 2024
1 parent 12820f6 commit b3e4ace
Show file tree
Hide file tree
Showing 30 changed files with 445 additions and 226 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ MANIFEST.json
coverage/
*.cddl
wpt-metadata/mapper/headful/webdriver/tests/bidi/
*.tsbuildinfo
25 changes: 25 additions & 0 deletions .mocharc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* Copyright 2024 Google LLC.
* Copyright (c) Microsoft Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

module.exports = {
logLevel: 'debug',
require: ['source-map-support/register'],
spec: '{lib/esm,tools}/**/*.spec.{js,mjs}',
// This should make mocha crash on uncaught errors.
// See https://github.com/mochajs/mocha/blob/master/docs/index.md#--allow-uncaught.
allowUncaught: true,
};
5 changes: 0 additions & 5 deletions .mocharc.json

This file was deleted.

4 changes: 2 additions & 2 deletions .vscode/launch.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"skipFiles": ["<node_internals>/**"],
"cwd": "${workspaceFolder}",
"console": "externalTerminal",
"program": "${workspaceFolder}/lib/cjs/bidiServer/index.js",
"outFiles": ["${workspaceFolder}/lib/cjs/bidiServer/**/*.js"],
"program": "${workspaceFolder}/lib/esm/bidiServer/index.js",
"outFiles": ["${workspaceFolder}/lib/esm/bidiServer/**/*.js"],
"args": ["--headless=false"],
"env": {
"DEBUG": "*",
Expand Down
Loading

0 comments on commit b3e4ace

Please sign in to comment.