mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-11 23:20:47 +02:00
Merge pull request #1899 from overleaf/spd-implicit-return-tests
Decaf cleanup: Remove implicit return from 'it' and 'describe' in tests GitOrigin-RevId: f297820e6212dddc0d60697a2fe1612ef27403b6
This commit is contained in:
committed by
sharelatex
parent
6fc507aea3
commit
757ae39487
@@ -22,7 +22,7 @@ describe('ProjectHelper', function() {
|
||||
return (this.ProjectHelper = SandboxedModule.require(modulePath))
|
||||
})
|
||||
|
||||
return describe('compilerFromV1Engine', function() {
|
||||
describe('compilerFromV1Engine', function() {
|
||||
it('returns the correct engine for latex_dvipdf', function() {
|
||||
return expect(
|
||||
this.ProjectHelper.compilerFromV1Engine('latex_dvipdf')
|
||||
@@ -41,7 +41,7 @@ describe('ProjectHelper', function() {
|
||||
).to.equal('xelatex')
|
||||
})
|
||||
|
||||
return it('returns the correct engine for lualatex', function() {
|
||||
it('returns the correct engine for lualatex', function() {
|
||||
return expect(
|
||||
this.ProjectHelper.compilerFromV1Engine('lualatex')
|
||||
).to.equal('lualatex')
|
||||
|
||||
Reference in New Issue
Block a user