Skip to content

Instantly share code, notes, and snippets.

@juno
Created December 1, 2010 09:05
Show Gist options
  • Select an option

  • Save juno/723210 to your computer and use it in GitHub Desktop.

Select an option

Save juno/723210 to your computer and use it in GitHub Desktop.
Arrayクラスのテスト
describe('Array クラスは', function() {
it('length プロパティで配列長を取得する事ができる', function() {
var arr = [1, 2, 3];
expect(arr.length).toEqual(3);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment