This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
WIP: add E2E test suite unrelated to docs examples #9557
Closed
Closed
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
5fe1832
chore(protractor): rename docs e2e test suite with `-docs` suffix
caitp edd2346
chore(package.json): add cheerio dependency
caitp ebb55a8
WIP: implement e2e test harness
caitp a0db029
WIP: also serve static files from test directories
caitp d71f56d
WIP: statSync can throw.
caitp 74e7401
WIP: fix conditional insertion of jquery
caitp b6660eb
WIP: move fixtures into fixtures directory
caitp 2d8a442
WIP: add .jshintrc files for fixtures and tests directory
caitp e120f88
WIP: add protractor grunt task + configs for running E2E specs
caitp 061f178
WIP: add sample tests
caitp 9e68bab
WIP: fix .jshintrc files and add test:e2e task for the basic e2e tests
caitp c9f18d0
WIP: try to run both jquery and non-jquery E2E tests on Travis
caitp c69259e
WIP: gruntfile u_u
caitp f4a8d1a
Kill protractor-e2e configs
caitp 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
WIP: statSync can throw.
- Loading branch information
commit d71f56d23db99e5454f28edb30bc255e92d131fb
There are no files selected for viewing
This file contains hidden or 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,5 +1,9 @@ | ||
<!DOCTYPE html> | ||
<html ng-app="test"> | ||
<p>Hello!</p> | ||
<div ng-controller="TestCtrl"> | ||
<p>{{text}}</p> | ||
</div> | ||
|
||
<script src="angular.js"></script> | ||
<script src="script.js"></script> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,4 @@ | ||
angular.module("test", []). | ||
controller("TestCtrl", function($scope) { | ||
$scope.text = "Hello, world!"; | ||
}); |
This file contains hidden or 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 hidden or 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
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.
Parenthesis missing:
s && (s.isFile() || s.isDirectory())