UNPKG
@web3-storage/pail
Version:
alpha (0.6.0-alpha.4)
latest (0.6.2)
next (0.6.3-rc.3)
0.6.3-rc.3
0.6.3-rc.2
0.6.3-rc.1
0.6.3-rc.0
0.6.2
0.6.0
0.6.0-alpha.4
0.6.0-alpha.3
0.6.0-alpha.2
0.6.0-alpha.1
0.6.0-alpha.0
0.5.0
0.5.0-alpha.0
0.4.2
0.4.1
0.4.0
DAG based key value store.
github.com/web3-storage/pail
web3-storage/pail
@web3-storage/pail
/
dist
/
vitest.config.js
14 lines
(13 loc)
•
313 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defineConfig }
from
'vitest/config'
; export
default
defineConfig
({
plugins
: [],
test
: {
coverage
: {
provider
:
'v8'
,
reporter
: [
'text'
,
'json'
,
'html'
] },
exclude
: [
'test/helpers.js'
],
include
: [
'test/*.js'
],
globals
:
true
} });