Commit 7cf848db by valera-rozuvan Committed by Valera Rozuvan

Work on RequireJS Jasmine test.

parent c4f336d8
describe "RequireJS", ->
it "check that the RequireJS object is present in the global namespace", ->
expect RequireJS.toEqual(jasmine.any(Object))
expect window.RequireJS.toEqual(jasmine.any(Object))
expect(RequireJS).toEqual jasmine.any(Object)
expect(window.RequireJS).toEqual jasmine.any(Object)
it "check that requirejs(), require(), and define() are not in the global namespace", ->
expect(requirejs).not.toBeDefined()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment