This repository has been archived by the owner on Dec 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #28: Add Firefox/Marionette/Tape-based test suite.
Adds an automated test suite that runs JS tests using Tape. The tests are run in Firefox using the remote code execution capabilities of Marionette. Marionette's only well-maintained client is in Python, so we also have to add Python dependencies, including a Pipfile. bin/run_tests.py contains most of the plumbing for getting the test JS running, including bundling it with Webpack, launching Firefox, and formatting the output.
- Loading branch information
Michael Kelly
committed
Jul 24, 2018
1 parent
00f8c5b
commit 6519787
Showing
13 changed files
with
870 additions
and
5 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
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 @@ | ||
node_modules | ||
web-ext-artifacts | ||
build | ||
gecko.log |
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,18 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[dev-packages] | ||
|
||
[packages] | ||
click = "*" | ||
marionette-client = "*" | ||
mozdownload = "*" | ||
mozinstall = "*" | ||
|
||
[requires] | ||
python_version = "2.7" | ||
|
||
[scripts] | ||
test = "npm test" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.