Commit 8f120f1d by valera-rozuvan Committed by Valera Rozuvan

Work on RequireJS Jasmine test.

parent c94530cb
describe "RequireJS", -> describe "RequireJS", ->
it "check that the RequireJS object is present in the global namespace", -> it "check that the RequireJS object is present in the global namespace", ->
expect(true).toBe true 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()
expect(require).not.toBeDefined()
expect(define).not.toBeDefined()
expect(window.requirejs).not.toBeDefined()
expect(window.require).not.toBeDefined()
expect(window.define).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