Convert the integration test-files to JavaScript modules

This commit is contained in:
Jonas Jenwald 2023-10-12 13:16:58 +02:00
parent 33456d3704
commit 9878d058fe
9 changed files with 83 additions and 68 deletions

View file

@ -13,13 +13,13 @@
* limitations under the License.
*/
const {
import {
closePages,
loadAndWait,
mockClipboard,
waitForEvent,
waitForTextLayer,
} = require("./test_utils.js");
} from "./test_utils.mjs";
const selectAll = async page => {
const promise = waitForEvent(page, "selectionchange");