Skip to content

Update title #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[[plugins]]
# runs QA Wolf tests against the deployed URL
package = "netlify-plugin-qawolf"
110 changes: 104 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@
"next": "10.0.4",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"netlify-plugin-qawolf": "^1.2.0"
}
}
12 changes: 6 additions & 6 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import Head from 'next/head'
import styles from '../styles/Home.module.css'
import Head from "next/head";
import styles from "../styles/Home.module.css";

export default function Home() {
return (
<div className={styles.container}>
<Head>
<title>QA Wolf :DD</title>
<title>QA Wolf 🐺</title>
<link rel="icon" href="/favicon.ico" />
</Head>

Expand All @@ -15,7 +15,7 @@ export default function Home() {
</h1>

<p className={styles.description}>
Get started by editing{' '}
Get started by editing{" "}
<code className={styles.code}>pages/index.js</code>
</p>

Expand Down Expand Up @@ -56,10 +56,10 @@ export default function Home() {
target="_blank"
rel="noopener noreferrer"
>
Powered by{' '}
Powered by{" "}
<img src="/vercel.svg" alt="Vercel Logo" className={styles.logo} />
</a>
</footer>
</div>
)
);
}