1
0
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-12-11 00:21:24 +01:00

build(deps): update latest

This commit is contained in:
Divlo
2023-01-10 23:15:36 +01:00
parent 1a12e0db0c
commit bc6ad699fc
20 changed files with 536 additions and 9974 deletions

View File

@@ -4,9 +4,7 @@ import { performance } from 'node:perf_hooks'
import type { Solution } from './Solution.js'
import { docker } from './Docker.js'
import {
SolutionTestsResult
} from './SolutionTestsResult.js'
import { SolutionTestsResult } from './SolutionTestsResult.js'
import { TemporaryFolder } from './TemporaryFolder.js'
export interface InputOutput {
@@ -74,9 +72,7 @@ export class Test implements TestOptions {
return { input, output }
}
static async runManyWithSolutions(
solutions: Solution[]
): Promise<number> {
static async runManyWithSolutions(solutions: Solution[]): Promise<number> {
const solutionTestsResultsPromises: Array<Promise<SolutionTestsResult>> = []
let isSolutionSuccess = true
for (const solution of solutions) {