Skip to content

Commit 3a3b18d

Browse files
committed
1 parent f0fbcb9 commit 3a3b18d

File tree

6 files changed

+11
-1
lines changed

6 files changed

+11
-1
lines changed

.dictionary.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ eremoteio
1515
errno
1616
eshutdown
1717
esocktnosupport
18+
eunatch
1819
fbca
1920
ggshield
2021
gpgsign

.github/infrastructure.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ branches:
3939
- context: test (16)
4040
- context: test (18)
4141
- context: test (19)
42+
- context: test (20)
4243
- context: typescript (5.0.4)
4344
- context: typescript (5.1.6)
4445
- context: typescript (latest)

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ jobs:
285285
fail-fast: false
286286
matrix:
287287
node-version:
288+
- 20
288289
- 19
289290
- 18
290291
- 16

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
19
1+
20.5.0

src/enums/__tests__/error-code-system.spec-d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,12 @@ describe('unit-d:enums/SystemErrorCode', () => {
600600
.toMatchTypeOf<'ETXTBSY'>()
601601
})
602602

603+
it('should match [EUNATCH = "EUNATCH"]', () => {
604+
expectTypeOf<typeof TestSubject>()
605+
.toHaveProperty('EUNATCH')
606+
.toMatchTypeOf<'EUNATCH'>()
607+
})
608+
603609
it('should match [EWOULDBLOCK = "EWOULDBLOCK"]', () => {
604610
expectTypeOf<typeof TestSubject>()
605611
.toHaveProperty('EWOULDBLOCK')

src/enums/error-code-system.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ enum SystemErrorCode {
110110
ETIME = 'ETIME',
111111
ETIMEDOUT = 'ETIMEDOUT',
112112
ETXTBSY = 'ETXTBSY',
113+
EUNATCH = 'EUNATCH',
113114
EWOULDBLOCK = 'EWOULDBLOCK',
114115
EXDEV = 'EXDEV',
115116
UNKNOWN = 'UNKNOWN'

0 commit comments

Comments
 (0)