mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
fix typo: 1028->1024 bytes
This commit is contained in:
@@ -356,7 +356,7 @@ gulp.task('test:api-v3:unit', (done) => {
|
|||||||
gulp.task('test:api-v3:integration', (done) => {
|
gulp.task('test:api-v3:integration', (done) => {
|
||||||
let runner = exec(
|
let runner = exec(
|
||||||
testBin('mocha test/api/v3/integration --recursive'),
|
testBin('mocha test/api/v3/integration --recursive'),
|
||||||
{maxBuffer: 500*1028},
|
{maxBuffer: 500*1024},
|
||||||
(err, stdout, stderr) => done(err)
|
(err, stdout, stderr) => done(err)
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -366,7 +366,7 @@ gulp.task('test:api-v3:integration', (done) => {
|
|||||||
gulp.task('test:api-v3:integration:separate-server', (done) => {
|
gulp.task('test:api-v3:integration:separate-server', (done) => {
|
||||||
let runner = exec(
|
let runner = exec(
|
||||||
testBin('mocha test/api/v3/integration --recursive', 'LOAD_SERVER=0'),
|
testBin('mocha test/api/v3/integration --recursive', 'LOAD_SERVER=0'),
|
||||||
{maxBuffer: 500*1028},
|
{maxBuffer: 500*1024},
|
||||||
(err, stdout, stderr) => done(err)
|
(err, stdout, stderr) => done(err)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user