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

bare-ts / tools / 5269784178
93%

Build:
DEFAULT BRANCH: main
Ran 14 Jun 2023 04:35PM UTC
Jobs 1
Files 15
Run time 5s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

14 Jun 2023 04:35PM UTC coverage: 91.105% (-1.9%) from 92.957%
5269784178

push

github

Conaclos
refactor: enum member names in `PascalCase`

BREAKING CHANGES: enum member in `PascalCase` instead of `CONSTANT_CASE`

In a bare schema, an `enum` variant must be in `CONSTANT_CASE`:

```bare
type Status enum {
    OPEN = 0
    CLOSE = 1
}
```

Previously, _bare-ts_ preserved the case:

```ts
export enum Status {
    OPEN = "OPEN",
    CLOSE = "CLOSE",
}
```

To follow the _TypeScript_ convention, the case is now in `PascalCase`.
Thus, _bare-ts_ generates the following code:

```ts
export enum Status {
    Open = "Open",
    Close = "Close",
}
```

862 of 939 branches covered (91.8%)

Branch coverage included in aggregate %.

70 of 84 relevant lines covered (83.33%)

25.13 hits per line

Jobs
ID Job ID Ran Files Coverage
1 5269784178.1 14 Jun 2023 04:35PM UTC 0
93.54
GitHub Action Run
Source Files on build 5269784178
Detailed source file information is not available for this build.
  • Back to Repo
  • 8f3c1046 on github
  • Prev Build on main (#5237330038)
  • Next Build on main (#5313735232)
  • Delete
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