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