decaffeinate: rename test/acceptance/coffee to test/acceptance/js
This commit is contained in:
75
test/acceptance/js/BrokenLatexFileTests.js
Normal file
75
test/acceptance/js/BrokenLatexFileTests.js
Normal file
@@ -0,0 +1,75 @@
|
||||
/* eslint-disable
|
||||
no-unused-vars,
|
||||
*/
|
||||
// TODO: This file was created by bulk-decaffeinate.
|
||||
// Fix any style issues and re-enable lint.
|
||||
/*
|
||||
* decaffeinate suggestions:
|
||||
* DS102: Remove unnecessary code created because of implicit returns
|
||||
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
||||
*/
|
||||
const Client = require("./helpers/Client");
|
||||
const request = require("request");
|
||||
require("chai").should();
|
||||
const ClsiApp = require("./helpers/ClsiApp");
|
||||
|
||||
describe("Broken LaTeX file", function() {
|
||||
before(function(done){
|
||||
this.broken_request = {
|
||||
resources: [{
|
||||
path: "main.tex",
|
||||
content: `\
|
||||
\\documentclass{articl % :(
|
||||
\\begin{documen % :(
|
||||
Broken
|
||||
\\end{documen % :(\
|
||||
`
|
||||
}
|
||||
]
|
||||
};
|
||||
this.correct_request = {
|
||||
resources: [{
|
||||
path: "main.tex",
|
||||
content: `\
|
||||
\\documentclass{article}
|
||||
\\begin{document}
|
||||
Hello world
|
||||
\\end{document}\
|
||||
`
|
||||
}
|
||||
]
|
||||
};
|
||||
return ClsiApp.ensureRunning(done);
|
||||
});
|
||||
|
||||
describe("on first run", function() {
|
||||
before(function(done) {
|
||||
this.project_id = Client.randomId();
|
||||
return Client.compile(this.project_id, this.broken_request, (error, res, body) => { this.error = error; this.res = res; this.body = body; return done(); });
|
||||
});
|
||||
|
||||
return it("should return a failure status", function() {
|
||||
return this.body.compile.status.should.equal("failure");
|
||||
});
|
||||
});
|
||||
|
||||
return describe("on second run", function() {
|
||||
before(function(done) {
|
||||
this.project_id = Client.randomId();
|
||||
return Client.compile(this.project_id, this.correct_request, () => {
|
||||
return Client.compile(this.project_id, this.broken_request, (error, res, body) => {
|
||||
this.error = error;
|
||||
this.res = res;
|
||||
this.body = body;
|
||||
return done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
return it("should return a failure status", function() {
|
||||
return this.body.compile.status.should.equal("failure");
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user