Skip to content

Commit

Permalink
Add missing environment names in test names
Browse files Browse the repository at this point in the history
  • Loading branch information
hymccord committed Jan 11, 2024
1 parent 0d42d00 commit 499dd65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/scripts/modules/stages/environments/lostCity.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {User} from "@scripts/types/hg";
import {IntakeMessage} from "@scripts/types/mhct";

describe('Lost City stages', () => {
it('should be for the "" environment', () => {
it('should be for the "Lost City" environment', () => {
const stager = new LostCityStager();
expect(stager.environment).toBe('Lost City');
});
Expand Down Expand Up @@ -50,7 +50,7 @@ describe('Lost City stages', () => {
});

describe('Cursed City stages', () => {
it('should be for the "" environment', () => {
it('should be for the "Cursed City" environment', () => {
const stager = new CursedCityStager();
expect(stager.environment).toBe('Cursed City');
});
Expand Down

0 comments on commit 499dd65

Please sign in to comment.