Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
23fcb8e9
...
23fcb8e9c48db39a989a56271a2e015e81bcdaf7
authored
2013-11-13 16:53:51 +0100
by
Laurent Jouanneau
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Reactivate some tests about http status for PhantomJS 1.9.2+
1 parent
d8a82e11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
tests/suites/http_status.js
tests/suites/http_status.js
View file @
23fcb8e
...
...
@@ -27,7 +27,9 @@ casper.test.begin("HTTP status code handling", 163, {
this
.
testCodes
.
push
(
118
);
}
if
(
utils
.
ltVersion
(
phantom
.
version
,
'1.9.0'
)
||
isGecko
)
{
if
(
utils
.
ltVersion
(
phantom
.
version
,
'1.9.0'
)
||
utils
.
gteVersion
(
phantom
.
version
,
'1.9.2'
)
||
isGecko
)
{
// https://github.com/ariya/phantomjs/issues/11163
this
.
testCodes
=
this
.
testCodes
.
concat
([
400
,
401
,
402
,
403
,
404
,
405
,
406
,
407
,
409
,
410
,
411
,
412
,
413
,
...
...
Please
register
or
sign in
to post a comment