Skip to content

Commit fab6b6a

Browse files
chore: wip
1 parent bdf31d0 commit fab6b6a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

storage/framework/core/cache/tests/Redis.test.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ import { afterAll, beforeAll, beforeEach, describe, expect, it } from 'bun:test'
22
import { redis } from '../src/drivers/redis'
33
import { startRedisServer, stopRedisServer } from './scripts/redis-server'
44

5-
beforeAll(async () => {
6-
await startRedisServer()
7-
})
5+
// beforeAll(async () => {
6+
// await startRedisServer()
7+
// })
88

99
beforeEach(async () => {
1010
await redis.clear()
1111
})
1212

13-
afterAll(() => {
14-
stopRedisServer()
15-
})
13+
// afterAll(() => {
14+
// stopRedisServer()
15+
// })
1616

1717
describe('@stacksjs/cache - Redis', () => {
1818
it('should set and get a redis cache value', async () => {

0 commit comments

Comments
 (0)