From e31b2ed1dbc6127626f4fd0dd8de988dce967be2 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:14:35 -0500 Subject: [PATCH] Add try scenario --- .github/workflows/ci-build.yml | 1 + test-app/config/ember-try.js | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index ebb60a4dc..0b3107cca 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -106,6 +106,7 @@ jobs: - ember-default - embroider-safe - embroider-optimized + - "@ember/test-waiters@v4" steps: - uses: actions/checkout@v4 diff --git a/test-app/config/ember-try.js b/test-app/config/ember-try.js index 9cd67bfae..35f5faf46 100644 --- a/test-app/config/ember-try.js +++ b/test-app/config/ember-try.js @@ -123,6 +123,14 @@ module.exports = async function () { }, embroiderSafe(), embroiderOptimized(), + embroiderOptimized({ + name: '@ember/test-waiters@v4', + npm: { + devDependencies: { + '@ember/test-waiters': '^4.0.0', + }, + }, + }), ], }; };