• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

teableio / teable / 20336903258

18 Dec 2025 12:26PM UTC coverage: 71.815% (-0.3%) from 72.077%
20336903258

Pull #2291

github

web-flow
Merge 452990c5f into df8e60508
Pull Request #2291: feat: template preview (T1306,T1316)

23954 of 26803 branches covered (89.37%)

792 of 1409 new or added lines in 38 files covered. (56.21%)

130 existing lines in 13 files now uncovered.

59502 of 82854 relevant lines covered (71.82%)

4185.17 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

72.22
/apps/nestjs-backend/src/features/plugin/plugin.module.ts
1
import { Module } from '@nestjs/common';
5✔
2
import { JwtModule } from '@nestjs/jwt';
3
import { authConfig, type IAuthConfig } from '../../configs/auth.config';
4
import { AccessTokenModule } from '../access-token/access-token.module';
5
import { StorageModule } from '../attachments/plugins/storage.module';
6
import { UserModule } from '../user/user.module';
7
import { OfficialPluginInitService } from './official/official-plugin-init.service';
8
import { PluginAuthService } from './plugin-auth.service';
9
import { PluginController } from './plugin.controller';
10
import { PluginService } from './plugin.service';
11

12
@Module({
13
  imports: [
5✔
14
    UserModule,
5✔
15
    AccessTokenModule,
5✔
16
    StorageModule,
5✔
17
    JwtModule.registerAsync({
5✔
18
      useFactory: (config: IAuthConfig) => ({
5✔
UNCOV
19
        secret: config.jwt.secret,
×
UNCOV
20
        signOptions: {
×
UNCOV
21
          expiresIn: config.jwt.expiresIn,
×
UNCOV
22
        },
×
UNCOV
23
      }),
×
24
      inject: [authConfig.KEY],
5✔
25
    }),
5✔
26
  ],
5✔
27
  providers: [PluginService, PluginAuthService, OfficialPluginInitService],
5✔
28
  controllers: [PluginController],
5✔
29
})
30
export class PluginModule {}
5✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc