What function allows you to write the test suite once and pass data in.
How would you create a block that groups together several related tests
Runs a function before each of the tests in the file runs
How would you check that a value is not a string matching another string or regex?
What function that allows you to run only one describe block
What function that allows you to skip a particular describe block
Function that allows you to only run specific tests suites of data driven tests
Runs a function after all the tests in the file have completed.
How would you test that two objects have the same types and structure
How would you test the opposite of something
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
How would you check if a value is NaN
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 function that allows you to stop running a suite of data driven tests
Placeholder method for when you are planning on writing tests
Function that allows you to only run specific tests with different test data
How would you check that a value is null
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
How would you write a test function once but run it with a table of data passed in that varies for each test
Runs a function after each one of the tests in this file completes.
Runs a function before any of the tests in this file run