UNPKG
homebridge-gsh-kazari
Version:
latest (2.2.2)
2.2.2
2.2.1
Google Smart Home
github.com/UiharuKazari2008/homebridge-gsh
UiharuKazari2008/homebridge-gsh
homebridge-gsh-kazari
/
node_modules
/
better-queue-memory
/
test
/
store.js
16 lines
(10 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var
test =
require
(
'better-queue-store-test'
);
var
Memory
=
require
(
'../'
);
// Test 1: No options
test.
basic
(
'No options'
, {
create
:
function
(
cb
) {
cb
(
null
,
new
Memory
()); },
destroy
:
function
(
cb
) {
cb
() }
// Pass
});
// ... more options here.