Skip to content

Commit 027765d

Browse files
authored
Merge branch 'master' into releases/v3.0.1
2 parents 62ca255 + efc903d commit 027765d

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/build-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
env:
3434
CSC_LINK: ${{ secrets.mac_certs }}
3535
CSC_KEY_PASSWORD: ${{ secrets.mac_certs_password }}
36-
run: yarn make:macos
36+
run: yarn make:macos -c.mac.identity=null
3737

3838
- name: Clean up builds
3939
run: rm -rfv dist/mac

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Gitify [![github][github-image]][github-url] [![codecov][codecov-image]][codecov-url] [![downloads][downloads-image]][downloads-url]
22

3-
> The mobile app has been deprecated in favor of the official GitHub mobile app the is coming out [soon](https://github.com/mobile).
3+
> The mobile app has been deprecated in favor of the official GitHub mobile app that is coming out [soon](https://github.com/mobile).
44
55
![Gitify](assets/images/press.png)
66

src/js/components/__snapshots__/notification.test.tsx.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ exports[`components/notification.js should render itself & its children 1`] = `
5050
</span>
5151
- Updated
5252
53-
over 2 years ago
53+
in over 3 years
5454
</div>
5555
</div>
5656
<div

src/js/components/notification.test.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ describe('components/notification.js', () => {
2828
});
2929

3030
it('should render itself & its children', async () => {
31+
(global as any).Date.now = jest.fn(() => new Date('2014'));
32+
3133
const props = {
3234
markNotification: jest.fn(),
3335
markOnClick: false,

0 commit comments

Comments
 (0)