You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
379 B
20 lines
379 B
3 years ago
|
'use strict'
|
||
|
|
||
|
const tap = require('tap')
|
||
|
const noopSet = require('../lib/noop-set')
|
||
|
|
||
|
tap.test('does a lot of nothing', async t => {
|
||
|
const aSet = noopSet()
|
||
|
t.type(aSet, 'object')
|
||
|
|
||
|
const item = {}
|
||
|
aSet.add(item)
|
||
|
aSet.add({ another: 'item' })
|
||
|
aSet.delete(item)
|
||
|
t.equal(aSet.has(item), true)
|
||
|
|
||
|
for (const i of aSet) {
|
||
|
t.fail('should not have any items', i)
|
||
|
}
|
||
|
})
|