1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-08 11:53:09 +00:00

Merge pull request from overleaf/jpa-align-with-dev-env

[misc] make build scripts happy again
This commit is contained in:
Jakob Ackermann 2021-07-27 10:46:16 +02:00 committed by GitHub
commit 5e6401a1e0
27 changed files with 3 additions and 3 deletions
services/clsi
buildscript.txtpackage.json
test/unit/js
pdfjsTests.js
snapshots/pdfjs
asymptote
biber_bibliography
epstopdf
feynmf
feynmp
fontawesome
fontawesome_xelatex
glossaries
gnuplot
hebrew
knitr
knitr_utf8
latex_compiler
lualatex_compiler
makeindex-custom-style
makeindex
minted
multibib_bibliography
nomenclature
references_in_include
simple_bibliography
subdirectories
tikz_feynman
xelatex_compiler

View file

@ -2,7 +2,7 @@ clsi
--data-dirs=cache,compiles,db,output
--dependencies=
--docker-repos=gcr.io/overleaf-ops
--env-add=
--env-add=ENABLE_PDF_CACHING="true"
--env-pass-through=TEXLIVE_IMAGE
--node-version=12.22.3
--public-repo=True

View file

@ -10,7 +10,7 @@
"start": "node $NODE_APP_OPTIONS app.js",
"test:acceptance:_run": "mocha --recursive --reporter spec --timeout 15000 --exit $@ test/acceptance/js",
"test:acceptance": "npm run test:acceptance:_run -- --grep=$MOCHA_GREP",
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js test/unit/lib",
"test:unit:_run": "mocha --recursive --reporter spec $@ test/unit/js",
"test:unit": "npm run test:unit:_run -- --grep=$MOCHA_GREP",
"nodemon": "nodemon --config nodemon.json",
"lint": "eslint --max-warnings 0 --format unix .",

View file

@ -3,7 +3,7 @@ const Path = require('path')
const { expect } = require('chai')
const { parseXrefTable } = require('../../../app/lib/pdfjs/parseXrefTable')
const PATH_EXAMPLES = 'test/acceptance/fixtures/examples/'
const PATH_SNAPSHOTS = 'test/unit/lib/snapshots/'
const PATH_SNAPSHOTS = 'test/unit/js/snapshots/pdfjs/'
const EXAMPLES = fs.readdirSync(PATH_EXAMPLES)
function snapshotPath(example) {