From 27532ff099fc30911c08e8276b71f46f433be67c Mon Sep 17 00:00:00 2001 From: Ben Demboski Date: Mon, 29 Jan 2024 16:17:38 -0800 Subject: [PATCH] Fix test command Enable the `--test-port` option. It's a good one to have regardless, but also logic inside `ember-cli`'s `test` command blows up if the option isn't present. --- lib/commands/test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/commands/test.js b/lib/commands/test.js index 62f0c475..86aad274 100644 --- a/lib/commands/test.js +++ b/lib/commands/test.js @@ -38,6 +38,7 @@ function buildAvailableOptions() { 'environment', 'config-file', 'server', + 'test-port', 'filter', 'module', 'watcher',