fixed case sensitive

This commit is contained in:
2019-10-31 09:51:04 +07:00
parent 6fe8e88d8d
commit e855852ccc
3 changed files with 6 additions and 2 deletions

View File

@@ -5,6 +5,10 @@ it('booler will be pass it to equal true', () => {
assert.equal(true, booler(true));
})
it('booler will be pass it to equal True', () => {
assert.equal(true, booler('True'));
})
it(`booler will be pass it to equal 'true'`, () => {
assert.equal(true, booler('true'));
})