From f509e0bdba200884c3d09c0247b5f7004eed1c99 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Tue, 27 Jan 2026 11:26:54 +1000 Subject: [PATCH] Missing export --- test/cypress/plugins/backendApi/client.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cypress/plugins/backendApi/client.mjs b/test/cypress/plugins/backendApi/client.mjs index 31ef1e03..78618abb 100644 --- a/test/cypress/plugins/backendApi/client.mjs +++ b/test/cypress/plugins/backendApi/client.mjs @@ -145,4 +145,4 @@ BackendApi.prototype.postForm = function (path, form, returnOnError) { }); }; -module.exports = BackendApi; +export default BackendApi;