Skip to content

Commit

Permalink
removed nodejs 16x
Browse files Browse the repository at this point in the history
nodejs/node#40030 Bug found in Node js; removed 16x for now
  • Loading branch information
evoinea committed Sep 8, 2021
1 parent f8db4fc commit 76e23b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 15.x, 16.x]
node-version: [12.x, 14.x, 15.x]

This comment has been minimized.

Copy link
@wojtekmaj

wojtekmaj Sep 8, 2021

Could have went with

        node-version: [12.x, 14.x, 15.x, 16.8]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions src/Loading/Loading.test.js
Expand Up @@ -7,8 +7,8 @@ import React from "react";
*/
describe("Loading", () => {
test("can set the label", () => {
// const newLabel = "This is a test";
// render(<Loading label={newLabel} />);
// expect(screen.getByText(newLabel));
const newLabel = "This is a test";
render(<Loading label={newLabel} />);
expect(screen.getByText(newLabel));
});
});

0 comments on commit 76e23b8

Please sign in to comment.