Skip to content

Commit

Permalink
some additional tests related #134
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Nov 23, 2015
1 parent 50c1627 commit 52b7fe4
Show file tree
Hide file tree
Showing 13 changed files with 332 additions and 75 deletions.
107 changes: 88 additions & 19 deletions tests/es.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

108 changes: 89 additions & 19 deletions tests/library.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions tests/library/es6.map.ls
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,12 @@ test 'Map' (assert)->
assert.ok done
o = {}
new Map!set o, 1
if DESCRIPTORS
assert.arrayEqual [key for key of o], []
assert.arrayEqual core.Object.keys(o), []
assert.arrayEqual core.Object.getOwnPropertyNames(o), []
assert.arrayEqual core.Object.getOwnPropertySymbols(o), []
assert.arrayEqual core.Reflect.ownKeys(o), []

test 'Map#clear' (assert)->
assert.isFunction Map::clear
Expand Down
Loading

0 comments on commit 52b7fe4

Please sign in to comment.