diff --git a/docs/development/local-development.md b/docs/development/local-development.md index f2ca1324128c9e..9857221030a5cc 100644 --- a/docs/development/local-development.md +++ b/docs/development/local-development.md @@ -29,6 +29,10 @@ sudo apt-get update sudo apt-get install -y git build-essential nodejs yarn ``` +#### Nix + +To enter a development shell with the necessary packages, run `nix-shell --packages gcc gitFull nodejs yarn`. + #### Windows Follow these steps to set up your development environment on Windows 10. diff --git a/lib/util/date.spec.ts b/lib/util/date.spec.ts index df5012031209a4..aa5abd62ec6ccf 100644 --- a/lib/util/date.spec.ts +++ b/lib/util/date.spec.ts @@ -7,7 +7,7 @@ import { } from './date'; describe('util/date', () => { - const t0 = DateTime.fromISO('2020-10-10'); + const t0 = DateTime.fromISO('2020-10-10', { zone: 'utc' }); beforeAll(() => { jest.useFakeTimers();