Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mctavish authored Feb 1, 2024
2 parents fc0457c + 10c7aa3 commit ede2199
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- run: npm install
- run: npm test
- name: coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
name: actions ${{ matrix.node }}
fail_ci_if_error: false
Expand All @@ -39,7 +39,7 @@ jobs:
- run: npm install
- run: npm test
- name: coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
name: actions windows
fail_ci_if_error: false
Expand Down
3 changes: 2 additions & 1 deletion test/test-evaluated-expressions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ describe('debugger provides useful information', () => {
// TODO: investigate why "readable" field is not returned by debugger
// as of Node 14:
// {name: 'readable', value: 'true'},
{name: '_eventsCount', value: '0'},
// NOTE: "_eventsCount" is no longer returned by debugger in Node 20.
// {name: '_eventsCount', value: '0'},
{name: '_maxListeners', value: 'undefined'},
{name: 'complete', value: 'false'},
{name: 'url', value: ''},
Expand Down

0 comments on commit ede2199

Please sign in to comment.