Fix various tests

This commit is contained in:
Phillip Thelen
2024-02-28 17:54:42 +01:00
committed by Sabe Jones
parent 3540a274b3
commit fb56f7df20
13 changed files with 349 additions and 124 deletions

View File

@@ -33,8 +33,7 @@ import gemsBlock from './gems';
import faq from './faq';
import timeTravelers from './time-travelers';
import { getScheduleMatchingGroup } from './constants/schedule';
import { getRepeatingEvents } from './constants/events';
import { REPEATING_EVENTS, getRepeatingEvents } from './constants/events';
import loginIncentives from './loginIncentives';
@@ -116,6 +115,7 @@ api.armoire = {
};
api.events = EVENTS;
api.repeatingEvents = REPEATING_EVENTS;
api.classes = CLASSES;
@@ -269,6 +269,7 @@ api.food = {
text: t('foodSaddleText'),
value: 5,
notes: t('foodSaddleNotes'),
canDrop: false,
},
/* eslint-disable camelcase */
Cake_Skeleton: {
@@ -577,6 +578,4 @@ api.faq = faq;
api.loginIncentives = loginIncentives(api);
api.getScheduleMatchingGroup = getScheduleMatchingGroup;
export default api;