Skip to content

Commit

Permalink
Remove wrong test
Browse files Browse the repository at this point in the history
  • Loading branch information
allevo committed Sep 19, 2023
1 parent 4e3a069 commit 8d19681
Showing 1 changed file with 0 additions and 29 deletions.
29 changes: 0 additions & 29 deletions packages/orama/tests/facets.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,35 +160,6 @@ t.test('facets', t => {
t.same(results.facets?.price.values['6-8'], 1)
})

t.test('', async t => {

const db = await create({
schema: {
foo: 'number',
},
})

await insertMultiple(db, [
{ foo: 1 },
{ foo: 2 },
{ foo: 3 },
{ foo: 4 },
])


const results = await search(db, {
term: '',
facets: {
foo: {},
},
})

console.log(results)


t.end()
})

t.test('should work with `enum` and `enum[]`', async t => {

const db = await create({
Expand Down

0 comments on commit 8d19681

Please sign in to comment.