Fixed != to !== and ran npm run style

This commit is contained in:
VinWare
2021-10-21 15:57:20 +05:30
parent 56b29cab25
commit 79c7ce45c8
5 changed files with 23 additions and 24 deletions

View File

@@ -54,7 +54,7 @@ describe('FigurateNumber', () => {
})
/** End */
it('Check All : should return all true',() => {
it('Check All : should return all true', () => {
expect(checkAll(1)).toEqual({
isTriangular: true,
isTetrahedral: true,
@@ -62,7 +62,7 @@ describe('FigurateNumber', () => {
})
})
it('Check All : should return all true,true,false',() => {
it('Check All : should return all true,true,false', () => {
expect(checkAll(15)).toEqual({
isTriangular: true,
isTetrahedral: false,