Const
Assertion for testing if a string begins with a specific prefix.
expect('hello world', 'to begin with', 'hello'); // passesexpect('hello world', 'to start with', 'world'); // fails Copy
expect('hello world', 'to begin with', 'hello'); // passesexpect('hello world', 'to start with', 'world'); // fails
Assertion for testing if a string begins with a specific prefix.