UNPKG

339 BJavaScriptView Raw
1import test from 'ava';
2import keyvTestSuite, { keyvOfficialTests } from '@keyv/test-suite';
3import Keyv from 'keyv';
4import KeyvMysql from 'this';
5
6keyvOfficialTests(test, Keyv, 'mysql://mysql@localhost/keyv_test', 'mysql://foo');
7
8const store = () => new KeyvMysql('mysql://mysql@localhost/keyv_test');
9keyvTestSuite(test, Keyv, store);