Skip to content

Commit dabbc09

Browse files
authored
Merge branch 'master' into dependabot/npm_and_yarn/semantic-release-24.2.1
2 parents 2f5a738 + 0741630 commit dabbc09

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ jobs:
4949
- name: Upload code coverage
5050
uses: codecov/codecov-action@v4
5151
with:
52-
fail_ci_if_error: true
52+
# Set to `true` once codecov token bug is fixed; https://github.com/parse-community/parse-server/issues/9129
53+
fail_ci_if_error: false
5354
token: ${{ secrets.CODECOV_TOKEN }}
5455
concurrency:
5556
group: ${{ github.workflow }}-${{ github.ref }}

spec/APNS.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ describe('APNS', () => {
406406
expect(updatedTopic).toEqual(topic + '.complication');
407407
});
408408

409-
it('updates topic based on complication pushType', async () => {
409+
it('updates topic based on fileprovider pushType', async () => {
410410
const topic = 'bundleId';
411411
const pushType = 'fileprovider';
412412
const updatedTopic = APNS._determineTopic(topic, pushType);

0 commit comments

Comments
 (0)