mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 14:17:22 +01:00
Implement new release schedule for backgrounds
This commit is contained in:
committed by
Sabe Jones
parent
278d9b74f9
commit
17db6a1772
@@ -5,32 +5,31 @@ import {
|
||||
|
||||
import { assembleScheduledMatchers } from '../../website/common/script/content/constants/schedule';
|
||||
|
||||
|
||||
describe('Content Schedule', () => {
|
||||
it('assembles scheduled items on january 15th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-01-15'));
|
||||
});
|
||||
it('assembles scheduled items on january 15th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-01-15'));
|
||||
});
|
||||
|
||||
it('assembles scheduled items on january 31th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-01-31'));
|
||||
});
|
||||
it('assembles scheduled items on january 31th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-01-31'));
|
||||
});
|
||||
|
||||
it('assembles scheduled items on march 2nd', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-03-02'));
|
||||
});
|
||||
it('assembles scheduled items on march 2nd', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-03-02'));
|
||||
});
|
||||
|
||||
it('assembles scheduled items on march 21st', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-03-21'));
|
||||
});
|
||||
it('assembles scheduled items on march 21st', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-03-21'));
|
||||
});
|
||||
|
||||
it('assembles scheduled items on october 7th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-10-07'));
|
||||
});
|
||||
it('assembles scheduled items on november 1th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-11-01'));
|
||||
});
|
||||
it('assembles scheduled items on october 7th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-10-07'));
|
||||
});
|
||||
it('assembles scheduled items on november 1th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-11-01'));
|
||||
});
|
||||
|
||||
it('assembles scheduled items on december 20th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-12-20'));
|
||||
});
|
||||
it('assembles scheduled items on december 20th', () => {
|
||||
const items = assembleScheduledMatchers(new Date('2024-12-20'));
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user