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