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 195f474
Show file tree
Hide file tree
Showing 2 changed files with 2 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

0 comments on commit 195f474

Please sign in to comment.