Skip to content

Commit

Permalink
fix imports on end2endserver
Browse files Browse the repository at this point in the history
  • Loading branch information
bubonicfred committed Jun 19, 2024
1 parent f63a3e0 commit b9c06ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/support/end2end-server.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import run from "./lib/task.js";
import task from "./lib/task.js";
import readline from "readline";
function logTask(taskname) {
return (data) => {
Expand All @@ -7,8 +7,8 @@ function logTask(taskname) {
}

const tasks = [
run("npm", ["run", "test:end2end:ldap"], logTask("ldap")),
run("npm", ["run", "test:end2end:meteor"], logTask("meteor")),
task.run("npm", ["run", "test:end2end:ldap"], logTask("ldap")),
task.run("npm", ["run", "test:end2end:meteor"], logTask("meteor")),
];

function shutdown() {
Expand Down

0 comments on commit b9c06ba

Please sign in to comment.