Work on RequireJS Jasmine test.
This commit is contained in:
committed by
Valera Rozuvan
parent
c94530cb01
commit
8f120f1d27
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user