[misc] bump the dev-env to 3.3.2

This commit is contained in:
Jakob Ackermann
2020-08-10 17:01:11 +01:00
parent 1ee48d0274
commit f4561c2fe2
66 changed files with 1371 additions and 1458 deletions

View File

@@ -13,8 +13,8 @@ const request = require('request')
require('chai').should()
const ClsiApp = require('./helpers/ClsiApp')
describe('Broken LaTeX file', function() {
before(function(done) {
describe('Broken LaTeX file', function () {
before(function (done) {
this.broken_request = {
resources: [
{
@@ -44,8 +44,8 @@ Hello world
return ClsiApp.ensureRunning(done)
})
describe('on first run', function() {
before(function(done) {
describe('on first run', function () {
before(function (done) {
this.project_id = Client.randomId()
return Client.compile(
this.project_id,
@@ -59,13 +59,13 @@ Hello world
)
})
return it('should return a failure status', function() {
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) {
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(
@@ -81,7 +81,7 @@ Hello world
})
})
return it('should return a failure status', function() {
return it('should return a failure status', function () {
return this.body.compile.status.should.equal('failure')
})
})