Work on RequireJS Jasmine test.

This commit is contained in:
valera-rozuvan
2012-12-05 09:26:46 +02:00
committed by Valera Rozuvan
parent c94530cb01
commit 8f120f1d27

View File

@@ -1,3 +1,12 @@
describe "RequireJS", ->
it "check that the RequireJS object is present in the global namespace", ->
expect(true).toBe true
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))
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()