add debugging to acceptance tests
This commit is contained in:
@@ -23,7 +23,7 @@ compare = (originalPath, generatedPath, callback = (error, same) ->) ->
|
|||||||
if stderr.trim() == "0 (0)"
|
if stderr.trim() == "0 (0)"
|
||||||
callback null, true
|
callback null, true
|
||||||
else
|
else
|
||||||
console.log stderr
|
console.log "compare result", stderr
|
||||||
callback null, false
|
callback null, false
|
||||||
|
|
||||||
compareMultiplePages = (project_id, callback = (error) ->) ->
|
compareMultiplePages = (project_id, callback = (error) ->) ->
|
||||||
@@ -72,11 +72,13 @@ describe "Example Documents", ->
|
|||||||
|
|
||||||
it "should generate the correct pdf", (done) ->
|
it "should generate the correct pdf", (done) ->
|
||||||
Client.compileDirectory @project_id, fixturePath("examples"), example_dir, 4242, (error, res, body) =>
|
Client.compileDirectory @project_id, fixturePath("examples"), example_dir, 4242, (error, res, body) =>
|
||||||
|
console.log "DEBUG: error", error, "body", body
|
||||||
pdf = Client.getOutputFile body, "pdf"
|
pdf = Client.getOutputFile body, "pdf"
|
||||||
downloadAndComparePdf(@project_id, example_dir, pdf.url, done)
|
downloadAndComparePdf(@project_id, example_dir, pdf.url, done)
|
||||||
|
|
||||||
it "should generate the correct pdf on the second run as well", (done) ->
|
it "should generate the correct pdf on the second run as well", (done) ->
|
||||||
Client.compileDirectory @project_id, fixturePath("examples"), example_dir, 4242, (error, res, body) =>
|
Client.compileDirectory @project_id, fixturePath("examples"), example_dir, 4242, (error, res, body) =>
|
||||||
|
console.log "DEBUG: error", error, "body", body
|
||||||
pdf = Client.getOutputFile body, "pdf"
|
pdf = Client.getOutputFile body, "pdf"
|
||||||
downloadAndComparePdf(@project_id, example_dir, pdf.url, done)
|
downloadAndComparePdf(@project_id, example_dir, pdf.url, done)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user