remove test that not provide any value
This commit is contained in:
parent
f709a59ec4
commit
2ae8965f56
1 changed files with 0 additions and 4 deletions
|
|
@ -1438,15 +1438,11 @@ test('is.emptyStringOrWhitespace', t => {
|
|||
|
||||
test('is.nonEmptyStringAndNotWhitespace', t => {
|
||||
t.false(is.nonEmptyStringAndNotWhitespace(' '));
|
||||
t.false(is.nonEmptyStringAndNotWhitespace(String()));
|
||||
t.true(is.nonEmptyStringAndNotWhitespace('🦄'));
|
||||
|
||||
t.throws(() => {
|
||||
assert.nonEmptyStringAndNotWhitespace('');
|
||||
});
|
||||
t.throws(() => {
|
||||
assert.nonEmptyStringAndNotWhitespace(String());
|
||||
});
|
||||
t.notThrows(() => {
|
||||
assert.nonEmptyStringAndNotWhitespace('🦄');
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue