Skip to content

Commit

Permalink
Enable test verifying presence of an info YAML file per Coding Challenge
Browse files Browse the repository at this point in the history
  • Loading branch information
bkimminich committed Nov 12, 2021
1 parent b9eab89 commit df4e8a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/server/codingChallengeFixesSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('codingChallengeFixes', () => {
}
})

xit('should have an info YAML file for each coding challenge', async () => { // TODO Enable test once all coding challenges have an info file. Then also state it as a mandatory pieced in companion guide.
it('should have an info YAML file for each coding challenge', async () => {
for (const challenge of codingChallenges) {
expect(fs.existsSync('./data/static/codefixes/' + challenge + '.info.yml'), `Coding challenge ${challenge} does not have an info YAML file`).to.equal(true)
}
Expand Down

0 comments on commit df4e8a5

Please sign in to comment.