Const
Assertion for testing if a string ends with a specific suffix.
expect('hello world', 'to end with', 'world'); // passesexpect('hello world', 'to end with', 'hello'); // fails Copy
expect('hello world', 'to end with', 'world'); // passesexpect('hello world', 'to end with', 'hello'); // fails
Assertion for testing if a string ends with a specific suffix.