TDD: Test Driven Developement & Touchdown Denver!
For this warmup you will have to create a Karma.conf.js file, write a test, and then write a function that makes the test pass.
Reference for setting up Karma.conf.js file: http://coursework.vschool.io/karma
- Create a karma.conf.js file that uses the phantomJS browser and Jasmine.
- Write a test for a function called "didDenverScore" that passes if
A. the function returns7when the string"touchdown and field goal"is passed in.
B. the function returns8when the string"touchdown and conversion"is passed in.
C. the function returns6when the string"touchdown and missed extra point"is passed in.
D. the function returns3when the string"field goal"is passed in.
E. the function returns0when the string"no score"is passed in. - Then run Karma and create the function "didDenverScore" until all the test pass.