expect
takes the actual value to test and returns a matcher
toBe
the === operator for Jasmine
it
Define a single spec.
toBeDefined()
The variable in question is defined
describe
test suite, set with a string and a function
beforeEach
runs before each unit test, allows us to share the common setup steps for each test spec