javascript - Does Karma rely on your source code being available in the browser's global scope? -


this seems way can jasmine tests run through karma @ moment:

src/js/voice.js

describe("speak", function () {     var input = "success";     var output = voice.prototype.speak(input);      it("should return input value", function () {         expect(output).toequal(input);     }); }); 

spec/voicespec.js

var voice = function () {};  voice.prototype.speak = function (string) {     return string;   }; 


Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -