MCPcopy Create free account
hub / github.com/catboost/catboost / E2EDeploymentTest

Function E2EDeploymentTest

catboost/node-package/build_scripts/docker.ts:17–26  ·  view source on GitHub ↗
(dockerfile: string)

Source from the content-addressed store, hash-verified

15}
16
17export async function E2EDeploymentTest(dockerfile: string) {
18 const imageName = 'node-catboost-e2e-deploy-test';
19 const imageBuildExecution = await buildE2ETestImage(imageName, dockerfile);
20 if (imageBuildExecution.code !== 0) {
21 throw imageBuildExecution.err ?? new Error('Failed to build E2E test image!' +
22 'Check execution logs for details.');
23 }
24
25 return runE2EContainerTest(imageName);
26}

Callers 2

e2e.tsFile · 0.90
ciFunction · 0.90

Calls 2

buildE2ETestImageFunction · 0.85
runE2EContainerTestFunction · 0.85

Tested by

no test coverage detected