Files
flights_web_raw/apps/angular/node_modules/karma-phantomjs-launcher/test/add.spec.js
T

11 lines
194 B
JavaScript

/* globals describe, it, expect */
describe('add', function () {
it('adds two numbers', function () {
function add (a, b) {
return a + b
}
expect(add(1, 4)).toBe(5)
})
})