1
0
Fork 0

fix: Typo in design tests

This commit is contained in:
joostdecock 2025-01-04 11:58:16 +01:00
parent d388aa2621
commit 69092702d9

View file

@ -64,7 +64,7 @@ export const testPatternConfig = (Pattern, about) => {
} }
}) })
it(` - 'dfficulty' should be set and be a [1-5] number`, () => { it(` - 'dfficulty' should be set and be a [1-5] number`, () => {
expect(typeof abbout.difficulty).to.equal('number') expect(typeof about.difficulty).to.equal('number')
expect([1, 2, 3, 4, 5].indexOf(about.difficulty) === -1).to.be.false expect([1, 2, 3, 4, 5].indexOf(about.difficulty) === -1).to.be.false
}) })