We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc7d3f1 commit 2da2a27Copy full SHA for 2da2a27
spec/RedisCacheAdapter.spec.js
@@ -39,7 +39,7 @@ describe_only(() => {
39
.put(KEY, VALUE)
40
.then(() => cache.get(KEY))
41
.then(value => expect(value).toEqual(VALUE))
42
- .then(wait.bind(null, 2))
+ .then(wait.bind(null, 5))
43
44
.then(value => expect(value).toEqual(null))
45
.then(done);
@@ -62,7 +62,7 @@ describe_only(() => {
62
.put(KEY, VALUE, Infinity)
63
64
65
- .then(wait.bind(null, 1))
66
67
68
@@ -78,7 +78,7 @@ describe_only(() => {
78
.put(KEY, VALUE, ttl)
79
80
81
82
83
84
);
0 commit comments