Skip to content

Commit

Permalink
revert: change EO spec instead
Browse files Browse the repository at this point in the history
  • Loading branch information
frontend-specialisten committed Mar 30, 2023
1 parent b55ff18 commit 29f9c30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import { AppSettingsStore } from './app-settings.store';

describe(AppSettingsStore.name, () => {
let store: AppSettingsStore;
const firstJan2021 = 1609459200000;
const firstJan2022 = 1640995200000;
const firstJan2021 = 1609455600000;
const firstJan2022 = 1640991600000;

beforeEach(() => {
store = TestBed.inject(AppSettingsStore);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ export class AppSettingsStore extends ComponentStore<AppSettingsState> {
constructor() {
super({
calendarDateRange: {
start: new Date('2021-01-01T00:00:00.000Z').getTime(),
end: new Date('2022-01-01T00:00:00.000Z').getTime(),
start: new Date('2021-01-01T00:00:00').getTime(),
end: new Date('2022-01-01T00:00:00').getTime(),
},
resolution: 'MONTH',
});
Expand Down

0 comments on commit 29f9c30

Please sign in to comment.