Skip to content

Commit

Permalink
fix: fix check-types variable continuous integration
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmatau79 committed Jan 14, 2025
1 parent 75a1c6e commit 912c7d0
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import appConfig from './config/app.config'
import { NotificationService } from './lib/notification.service'
import { HttpModule } from '@nestjs/axios'
import { RoomsModule } from './rooms/rooms.module'
import { HandledRedisModule } from './modules/redis.module'

@Module({
imports: [
Expand Down
2 changes: 0 additions & 2 deletions src/lib/RoomFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ export class RoomFactory {

this.logger.debug(`*** RoomId: ${roomId}`)

const redis = this.redis

return new Room({
roomId,
protooRoom,
Expand Down
1 change: 0 additions & 1 deletion src/rooms/rooms.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Module } from '@nestjs/common'
import { RoomsService } from './rooms.service'
import { RoomsController } from './rooms.controller'


@Module({
controllers: [RoomsController],
providers: [RoomsService],
Expand Down
1 change: 0 additions & 1 deletion test/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,4 @@ describe('Protoo WebSocket E2E Test', () => {
expect(response.body.wsUrl).toMatch(/^wss:\/\//)
expect(response.body).toHaveProperty('protocol', '2060-mediasoup-v1')
})

})

0 comments on commit 912c7d0

Please sign in to comment.