Complete AVA test suite to test a Keyv storage adapter for API compliance.
Install AVA, Keyv and @keyvhq/test-suite
as development dependencies.
npm install --save-dev ava keyv @keyvhq/test-suite
Then update keyv
and @keyvhq/test-suite
versions to *
in package.json
to ensure you're always testing against the latest version.
test.js
import test from 'ava'
import keyvTestSuite from '@keyvhq/test-suite'
import Keyv from '@keyvhq/core'
import KeyvStore from './'
const store = () => new KeyvStore()
keyvTestSuite(test, Keyv, store)
Where KeyvStore
is your storage adapter.
Set your test script in package.json
to ava
.
"scripts": {
"test": "ava"
}
An example configuration for Travis CI would look like this:
.travis.yml
language: node_js
node_js:
- '8'
- '6'
- '4'
script: npm test
Take a look at redis for an example of an existing storage adapter using @keyvhq/test-suite
.
@keyvhq/test-suite © Luke Childs, released under the MIT License.
Maintained by Microlink with help from contributors.
microlink.io · GitHub microlinkhq · X @microlinkhq