Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Jul 11, 2020
1 parent 5d6e025 commit c39d4dc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@seneca/redis-cache",
"version": "2.0.1",
"version": "2.0.2",
"description": "Redis caching plugin for seneca",
"main": "redis.js",
"scripts": {
Expand All @@ -12,7 +12,7 @@
"reset": "npm run clean && npm i && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm install --registry http://registry.npmjs.org && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm test && npm run doc && npm run repo-tag && npm publish --access public"
"repo-publish-quick": "npm run prettier && npm test && npm run doc && npm run repo-tag && npm publish --registry http://registry.npmjs.org --access public"
},
"repository": {
"type": "git",
Expand Down
20 changes: 10 additions & 10 deletions test/coverage.html
Expand Up @@ -547,7 +547,7 @@ <h1>Test Report</h1>
<div class="failures">0</div>
<div class="skipped">0</div>
<div class="test-count">13</div>
<div class="duration">384</div>
<div class="duration">386</div>
</div>
<div id="filters">
<input type="checkbox" checked="" onchange="filter(this)" value="success" id="show-success">
Expand All @@ -572,35 +572,35 @@ <h1>Test Report</h1>
<td class="test-title">validate

</td>
<td class="test-duration">7</td>
<td class="test-duration">5</td>
</tr>
<tr class="show cache success">
<td class="test-id">2</td>
<td class="test-title">cache basic

</td>
<td class="test-duration">189</td>
<td class="test-duration">206</td>
</tr>
<tr class="show cache success">
<td class="test-id">3</td>
<td class="test-title">cache set

</td>
<td class="test-duration">3</td>
<td class="test-duration">2</td>
</tr>
<tr class="show cache success">
<td class="test-id">4</td>
<td class="test-title">cache get

</td>
<td class="test-duration">4</td>
<td class="test-duration">1</td>
</tr>
<tr class="show cache success">
<td class="test-id">5</td>
<td class="test-title">cache add

</td>
<td class="test-duration">3</td>
<td class="test-duration">2</td>
</tr>
<tr class="show cache success">
<td class="test-id">6</td>
Expand Down Expand Up @@ -628,21 +628,21 @@ <h1>Test Report</h1>
<td class="test-title">cache decr

</td>
<td class="test-duration">3</td>
<td class="test-duration">1</td>
</tr>
<tr class="show cache success">
<td class="test-id">10</td>
<td class="test-title">cache won&#x27;t incr unless value is an integer

</td>
<td class="test-duration">4</td>
<td class="test-duration">15</td>
</tr>
<tr class="show cache success">
<td class="test-id">11</td>
<td class="test-title">cache won&#x27;t decr if value is not an integer

</td>
<td class="test-duration">2</td>
<td class="test-duration">1</td>
</tr>
<tr class="show cache success">
<td class="test-id">12</td>
Expand All @@ -656,7 +656,7 @@ <h1>Test Report</h1>
<td class="test-title">cache close

</td>
<td class="test-duration">148</td>
<td class="test-duration">131</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit c39d4dc

Please sign in to comment.