Skip to content
This repository has been archived by the owner on Jun 6, 2022. It is now read-only.

Commit

Permalink
update test for new ls
Browse files Browse the repository at this point in the history
  • Loading branch information
antiwinter committed Sep 10, 2019
1 parent 78ae3a8 commit a0d317b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,13 @@ function commonTests(aa) {
})

ava.serial.cb(nme('ls'), t => {
let ls = core.ls()
let ls = core.ls({ long: 1 })

// t.assert(ls.search(cfg.getMode()) > 0)
t.assert(ls.search('sellableitemdrops') > 0)
t.assert(ls.search('classicon') > 0)

ls = core.ls({})

// t.assert(ls.search(cfg.getMode()) > 0)
t.assert(ls.search('sellableitemdrops') > 0)
Expand Down

0 comments on commit a0d317b

Please sign in to comment.