Revert "allow eggs to have a release date"

This reverts commit 6d13a257dd.
This commit is contained in:
Phillip Thelen
2024-06-11 18:19:11 +02:00
parent 544d67e7e5
commit b83f62bd82
11 changed files with 97 additions and 153 deletions

View File

@@ -7,20 +7,11 @@ import {
import t from '../../website/common/script/content/translation';
import * as stable from '../../website/common/script/content/stable';
import eggs from '../../website/common/script/content/eggs';
import potions from '../../website/common/script/content/hatching-potions';
import * as eggs from '../../website/common/script/content/eggs';
import * as potions from '../../website/common/script/content/hatching-potions';
describe('stable', () => {
describe('dropPets', () => {
let clock;
beforeEach(() => {
clock = sinon.useFakeTimers(new Date('2020-05-20'));
});
afterEach(() => {
clock.restore();
});
it('contains a pet for each drop potion * each drop egg', () => {
const numberOfDropPotions = Object.keys(potions.drops).length;
const numberOfDropEggs = Object.keys(eggs.drops).length;