Skip to content

Commit

Permalink
[ACS-5107] - Fix failing unit test on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikiwanekhyland committed Sep 4, 2023
1 parent 75be9f6 commit e3e5df7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
fetch-depth: 0

- name: node
uses: actions/setup-node@v3
Expand All @@ -99,7 +99,7 @@ jobs:
cache: 'npm'
- uses: ./.github/actions/before-install
- run: npm ci
- run: npm test ${{ matrix.unit-tests.name }} -- --browsers=ChromeHeadless --watch=false $TEST_OPTS
- run: npm run affected:test -- --browsers=ChromeHeadless --watch=false $TEST_OPTS --base=origin/develop --exclude='content-ce'

e2es:
needs: [lint, build, unit-tests]
Expand Down
1 change: 1 addition & 0 deletions projects/aca-shared/src/lib/services/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ export class AppService implements OnDestroy {
this.contentApi.getRepositoryInformation().subscribe((response: DiscoveryEntry) => {
if (response?.entry?.repository) {
this.store.dispatch(new SetRepositoryInfoAction(response.entry.repository));
this.store.dispatch(new SetRepositoryInfoAction(response.entry.repository));
}
});
}
Expand Down

0 comments on commit e3e5df7

Please sign in to comment.