@keyvhq/test-suite

2.0.3 • Public • Published

@keyvhq/test-suite keyv

Complete AVA test suite to test a Keyv storage adapter for API compliance.

Usage

Install

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.

Create Test File

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"
}

Test on Active Node.js LTS and Higher

An example configuration for Travis CI would look like this:

.travis.yml

language: node_js
node_js:
  - '8'
  - '6'
  - '4'
script: npm test

Example

Take a look at redis for an example of an existing storage adapter using @keyvhq/test-suite.

License

@keyvhq/test-suite © Luke Childs, released under the MIT License.
Maintained by Microlink with help from contributors.

microlink.io · GitHub microlinkhq · Twitter @microlinkhq

Package Sidebar

Install

npm i @keyvhq/test-suite

Homepage

keyv.js.org

Weekly Downloads

84

Version

2.0.3

License

MIT

Unpacked Size

14.8 kB

Total Files

8

Last publish

Collaborators

  • kikobeats
  • jytesh