Skip to content

Commit

Permalink
refactor(test): rename test suits
Browse files Browse the repository at this point in the history
  • Loading branch information
sdvcrx committed Jan 18, 2018
1 parent b333c7c commit d95678c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/cache-lru.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const { expect } = chai
const Cache = require('../')('lru')
const request = require('./request')

describe('Cache', () => {
describe('Cache(lru)', () => {
const cacheRequest = Cache.remember('key', request)

describe('#remember', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/cache.spec.js → test/cache-redis.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const CacheFactory = require('../')
const Cache = CacheFactory('redis')
const request = require('./request')

describe('Cache', () => {
describe('Cache(redis)', () => {
const cacheRequest = Cache.remember('key', request)

describe('#init', () => {
Expand Down

0 comments on commit d95678c

Please sign in to comment.