What function that allows you to stop running a suite of data driven tests
Function that allows you to only run specific tests suites of data driven tests
Placeholder method for when you are planning on writing tests
Runs a function after all the tests in the file have completed.
How would you create a block that groups together several related tests
Function that allows you to only run specific tests with different test data
Runs a function after each one of the tests in this file completes.
How would you test the opposite of something
Runs a function before any of the tests in this file run
Runs a function before each of the tests in the file runs
What function that allows you to skip a particular describe block
How would you check that a mock function has been called
What function that allows you to specify which tests are the only ones you want to run in the test file
How do you define a test
What is the global function used everytime you want to check for an expected value in a test
How would you check that a value is falsy
What function allows you to write the test suite once and pass data in.
How would you write a test function once but run it with a table of data passed in that varies for each test
How would you check that a variable is undefined
What function that allows you to run only one describe block
Allows you to stop running a collection of data driven tests
How would you check that a value is null
How would you check if a value is NaN
How would you check that a value is not a string matching another string or regex?
How would you test that two objects have the same types and structure