Skip to content

Commit

Permalink
Add base testcase and uncomment test262 tests that pass now for Array…
Browse files Browse the repository at this point in the history
….prototype.sort
  • Loading branch information
Max Schlueter authored and jhnaldo committed May 8, 2019
1 parent 6bae7b7 commit 659c30b
Show file tree
Hide file tree
Showing 22 changed files with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/semantics/builtin/15.4/15.4.4/15.4.4.11/15.4.4.11_BASE.js
@@ -0,0 +1,11 @@
var x = new Array(2,3,1)
x.sort()

var __result1 = x[0] === 1
var __expect1 = true

var __result2 = x[1] === 2
var __expect2 = true

var __result3 = x[2] === 3
var __expect3 = true

0 comments on commit 659c30b

Please sign in to comment.