Answers for "chai a string to be a certain length"

0

chai length greater than

expect('foo').to.have.lengthOf(3); // Recommended
expect('foo').to.have.lengthOf.above(2); // Not recommended

expect([1, 2, 3]).to.have.lengthOf(3); // Recommended
expect([1, 2, 3]).to.have.lengthOf.above(2); // Not recommended
Posted by: Guest on June-03-2020

Code answers related to "chai a string to be a certain length"

Browse Popular Code Answers by Language