-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d5fc1ea
commit 7869008
Showing
12 changed files
with
1,812 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
example | ||
.eslint* | ||
.vscode | ||
.vscode | ||
*.log | ||
nightwatch.json | ||
test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,5 +28,8 @@ | |
}, | ||
"[javascript]": { | ||
"editor.tabSize": 4 | ||
}, | ||
"[json]": { | ||
"editor.tabSize": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<h2>Home!</h2> | ||
<h2 class="routetitle">Home!</h2> | ||
<p>Welcome to this sample code!</p> | ||
<p>Things to try:</p> | ||
<ul> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
<h2 class="routetitle">NotFound</h2> | ||
<p>Oops, this route doesn't exist!</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<h2 class="routetitle">Wild</h2> | ||
<p>Your message is: {params.wild}</p> | ||
|
||
<script> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"src_folders": [ | ||
"test/" | ||
], | ||
|
||
"webdriver": { | ||
"start_process": true, | ||
"server_path": "node_modules/.bin/chromedriver", | ||
"port": 9515 | ||
}, | ||
|
||
"test_runner" : { | ||
"type" : "mocha", | ||
"options" : { | ||
"ui" : "bdd", | ||
"reporter" : "list" | ||
} | ||
}, | ||
|
||
"test_settings": { | ||
"default": { | ||
"desiredCapabilities": { | ||
"browserName": "chrome", | ||
"chromeOptions": { | ||
"args": [ | ||
"--headless", | ||
"--disable-gpu" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.