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

khu-khlug / sight-backend / 13069177905

31 Jan 2025 08:36AM UTC coverage: 57.736% (+0.06%) from 57.673%
13069177905

push

github

web-flow
fix: state 및 active 프로퍼티의 이름을 적절하게 수정 (#96)

524 of 1442 branches covered (36.34%)

Branch coverage included in aggregate %.

6 of 14 new or added lines in 7 files covered. (42.86%)

30 existing lines in 4 files now uncovered.

1409 of 1906 relevant lines covered (73.92%)

7.03 hits per line

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

0.0
/src/app/application/user/query/listUser/ListUserQuery.ts
1
import { IQuery } from '@nestjs/cqrs';
2

3
import { StudentStatus } from '@khlug/app/domain/user/model/constant';
4

5
import { Typeof } from '@khlug/util/types';
6

7
export class ListUserQuery implements IQuery {
8
  readonly email: string | null;
9
  readonly phone: string | null;
10
  readonly name: string | null;
11
  readonly number: string | null;
12
  readonly college: string | null;
×
13
  readonly grade: number | null;
×
NEW
14
  readonly studentStatus: StudentStatus | null;
×
15
  readonly limit: number;
×
16
  readonly offset: number;
×
17

×
18
  constructor(params: Typeof<ListUserQuery>) {
×
19
    this.email = params.email;
×
20
    this.phone = params.phone;
×
21
    this.name = params.name;
22
    this.number = params.number;
23
    this.college = params.college;
24
    this.grade = params.grade;
25
    this.studentStatus = params.studentStatus;
26
    this.limit = params.limit;
27
    this.offset = params.offset;
28
  }
29
}
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