Skip to content

Instantly share code, notes, and snippets.

@anchan828
Created October 4, 2012 18:15
Show Gist options
  • Save anchan828/3835385 to your computer and use it in GitHub Desktop.
Save anchan828/3835385 to your computer and use it in GitHub Desktop.
Jasmineで非同期テスト
describe "ゲーム取得", =>
@data = null
afterEach =>
@data =null
it "取得", =>
api.getGame(GAME_ID[0]).done (data) => @data = data
waitsFor =>
data
, "load..."
,5000
runs => expect(data).not.toBeNull()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment