Created
March 1, 2012 21:41
-
-
Save todoubled/1953429 to your computer and use it in GitHub Desktop.
JSDOM/jasmine
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window = {} unless window? | |
global.$=require('jquery') unless jQuery? | |
global._=require('underscore') unless _? | |
global.Backbone=require('backbone') unless Backbone? | |
global.Mustache=require('../lib/mustache') unless Mustache? | |
global.localStorage=require('localStorage') unless localStorage? | |
global.Store=require('../lib/backbone.localStorage') unless Store? | |
global.jsdom = require("jsdom").jsdom | |
global.document = jsdom('<html><body></body></html>') | |
global.window = document.createWindow() | |
global.navigator = | |
browser: 'foo' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment