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

typeorm / typeorm / 14093537090

26 Mar 2025 09:10PM UTC coverage: 72.108% (-0.3%) from 72.384%
14093537090

push

github

web-flow
build: improve test workflow (#11361)

8649 of 12641 branches covered (68.42%)

Branch coverage included in aggregate %.

5 of 5 new or added lines in 1 file covered. (100.0%)

19 existing lines in 12 files now uncovered.

17602 of 23764 relevant lines covered (74.07%)

161388.77 hits per line

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

0.0
/src/cli.ts
1
#!/usr/bin/env node
2
import "reflect-metadata"
3
import yargs from "yargs"
4
import { SchemaSyncCommand } from "./commands/SchemaSyncCommand"
5
import { SchemaDropCommand } from "./commands/SchemaDropCommand"
6
import { QueryCommand } from "./commands/QueryCommand"
7
import { EntityCreateCommand } from "./commands/EntityCreateCommand"
8
import { MigrationCreateCommand } from "./commands/MigrationCreateCommand"
9
import { MigrationRunCommand } from "./commands/MigrationRunCommand"
10
import { MigrationRevertCommand } from "./commands/MigrationRevertCommand"
11
import { MigrationShowCommand } from "./commands/MigrationShowCommand"
12
import { SubscriberCreateCommand } from "./commands/SubscriberCreateCommand"
13
import { SchemaLogCommand } from "./commands/SchemaLogCommand"
14
import { MigrationGenerateCommand } from "./commands/MigrationGenerateCommand"
15
import { VersionCommand } from "./commands/VersionCommand"
16
import { InitCommand } from "./commands/InitCommand"
17
import { CacheClearCommand } from "./commands/CacheClearCommand"
18

UNCOV
19
yargs
×
20
    .usage("Usage: $0 <command> [options]")
21
    .command(new SchemaSyncCommand())
22
    .command(new SchemaLogCommand())
23
    .command(new SchemaDropCommand())
24
    .command(new QueryCommand())
25
    .command(new EntityCreateCommand())
26
    .command(new SubscriberCreateCommand())
27
    .command(new MigrationCreateCommand())
28
    .command(new MigrationGenerateCommand())
29
    .command(new MigrationRunCommand())
30
    .command(new MigrationShowCommand())
31
    .command(new MigrationRevertCommand())
32
    .command(new VersionCommand())
33
    .command(new CacheClearCommand())
34
    .command(new InitCommand())
35
    .recommendCommands()
36
    .demandCommand(1)
37
    .strict()
38
    .alias("v", "version")
39
    .help("h")
40
    .alias("h", "help").argv
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