Merge remote-tracking branch 'origin/develop' into apple_sub_fix

This commit is contained in:
Phillip Thelen
2023-02-16 09:38:14 +01:00
23 changed files with 587 additions and 298 deletions
@@ -35,13 +35,6 @@ describe('GET /world-state', () => {
});
});
it('returns a string representing the current season for NPC sprites', async () => {
const res = await requester().get('/world-state');
expect(res).to.have.nested.property('npcImageSuffix');
expect(res.npcImageSuffix).to.be.a('string');
});
context('no current event', () => {
beforeEach(async () => {
sinon.stub(worldState, 'getCurrentEvent').returns(null);