(
testAssetName: string,
testFolderName: string,
suiteName: string,
vscodeWorkspaceFileName = `${testAssetName}.code-workspace`,
testFile: string | undefined = undefined,
env: NodeJS.ProcessEnv = {}
)
| 60 | } |
| 61 | |
| 62 | export async function runIntegrationTest( |
| 63 | testAssetName: string, |
| 64 | testFolderName: string, |
| 65 | suiteName: string, |
| 66 | vscodeWorkspaceFileName = `${testAssetName}.code-workspace`, |
| 67 | testFile: string | undefined = undefined, |
| 68 | env: NodeJS.ProcessEnv = {} |
| 69 | ): Promise<number> { |
| 70 | const testFolder = path.join('test', testFolderName); |
| 71 | return await runJestIntegrationTest(testAssetName, testFolder, vscodeWorkspaceFileName, suiteName, env, testFile); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Runs jest based integration tests. |
no test coverage detected