Skip to content

Commit

Permalink
chore: fix validate
Browse files Browse the repository at this point in the history
  • Loading branch information
mdvanes committed Apr 15, 2024
1 parent 8a26985 commit 0130cdd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/validateAndBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [20.x]

steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install and Build components 🔧
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jest.mock(
() => "mock-previously-played-card"
);
jest.mock("../../Molecules/CarTwin/CarTwinCard", () => "mock-cartwin-card");
jest.mock("../../Molecules/HomeSec/HomeSec", () => "mock-homesec");

describe("Dashboard page", () => {
it("contains all the control components", () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ exports[`Dashboard page contains all the control components 1`] = `
<mock-switch-bar-list />
</div>
<mock-gaschart />
<mock-homesec />
<mock-url-to-music />
<mock-log-card />
</div>
Expand Down

0 comments on commit 0130cdd

Please sign in to comment.