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 ce7fa89 commit 84fa622Copy full SHA for 84fa622
tests/unit/api/apiUtils/rateLimit/cache.js
@@ -14,12 +14,12 @@ const {
14
} = require('../../../../../lib/api/apiUtils/rateLimit/cache');
15
16
describe('test counter storage', () => {
17
- it('should set a counter', () => {
+ it('setCounter() should set a counter', () => {
18
setCounter('foo', 10);
19
assert.strictEqual(counters.get('foo'), 10);
20
});
21
22
- it('should get a counter', () => {
+ it('getCounter() should get a counter', () => {
23
24
assert.strictEqual(getCounter('foo'), 10);
25
0 commit comments