Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Mar 8, 2024
1 parent 1f21374 commit bf9f61a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- run: pnpm test:node
- name: Run Tests
run: pnpm test:ember
- run: pnpm run build

floating:
name: "Floating Dependencies"
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/smoke-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module('Acceptance | smoke', function (hooks) {
let store = this.owner.lookup('service:store');
let pages = store.peekAll('page');

for (let section of pages.toArray()) {
for (let section of pages) {
for (let page of section?.pages ?? []) {
await visit(`/release/${page.url}`);
}
Expand Down
1 change: 1 addition & 0 deletions tests/dummy/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = async function () {
npm: {
devDependencies: {
'ember-source': '~3.28.0',
'ember-cli': '~4.12.0',
},
},
},
Expand Down

0 comments on commit bf9f61a

Please sign in to comment.