This repository was archived by the owner on May 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Frontend tests #193
Merged
Merged
Frontend tests #193
Changes from 3 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
af0c497
added front end tests
abhinadduri b411447
finished sender tests, figuring out array buffer to string conversions
abhinadduri 0046294
finished frontend tests
abhinadduri 91cc82d
removing bundle.js from tests and adding to gitignore
abhinadduri 5dd5743
indenting in frontend.bundle.js
abhinadduri 89bc51c
added unsafe and safe events instead of console logging when a checks…
abhinadduri 6379a36
fixing conflicts
abhinadduri b076717
added comments for fraudulent checksum test case
abhinadduri cec3d6b
added one more assert to checksum test
abhinadduri e9c4907
simplified rejection for one promise
abhinadduri e5f2b38
testing circle install firefox
abhinadduri ab60262
testing circle
abhinadduri 8f327fa
testing circle
abhinadduri d287f67
testing circle again
abhinadduri e0847e0
testing failure
abhinadduri 188521f
circle is working
abhinadduri ba348b6
Merge branch 'master' of github.com:mozilla/send into frontend_tests
abhinadduri b88cf22
Merge branch 'master' of github.com:mozilla/send into frontend_tests
abhinadduri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,2 +1,3 @@ | ||
public/bundle.js | ||
public/webcrypto-shim.js | ||
test/frontend/bundle.js |
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ function arrayToHex(iv) { | |
hexStr += iv[i].toString(16); | ||
} | ||
} | ||
window.hexStr = hexStr; | ||
return hexStr; | ||
} | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
env: | ||
browser: true |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if "test/frontend/bundle.js" is compiled/browserified, we may want to add it to .gitignore and nuke the file below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh good idea. Did not mean to push that.