We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e56fd78 commit 35aa277Copy full SHA for 35aa277
2 files changed
.github/workflows/deploy.yaml
@@ -29,6 +29,7 @@ jobs:
29
- name: Prepare build
30
run: npm run build
31
deploy:
32
+ needs: [test, lint, buildnpm]
33
runs-on: ubuntu-latest
34
steps:
35
- name: Get code
src/test/App.test.js
@@ -1,7 +1,6 @@
1
-import React from "react";
2
import { render, screen, fireEvent } from "@testing-library/react";
3
import "@testing-library/jest-dom/extend-expect";
4
-import App from "../App";
+import App from "./../App";
5
6
test("rendersAppWithoutCrashing", () => {
7
render(<App />);
0 commit comments