eng: update mocha 2 -> 8

This commit is contained in:
Connor Peet
2020-12-17 10:16:42 -08:00
parent 65e1707d19
commit 04d7411785
11 changed files with 353 additions and 242 deletions

View File

@@ -135,9 +135,9 @@ function serializeSuite(suite) {
tests: suite.tests.map(serializeRunnable),
title: suite.title,
fullTitle: suite.fullTitle(),
titlePath: suite.titlePath(),
timeout: suite.timeout(),
retries: suite.retries(),
enableTimeouts: suite.enableTimeouts(),
slow: suite.slow(),
bail: suite.bail()
};
@@ -147,6 +147,7 @@ function serializeRunnable(runnable) {
return {
title: runnable.title,
fullTitle: runnable.fullTitle(),
titlePath: runnable.titlePath(),
async: runnable.async,
slow: runnable.slow(),
speed: runnable.speed,