Sanity tests perf improvements (#296248)

This commit is contained in:
Dmitriy Vasyura
2026-02-22 08:55:53 -08:00
committed by GitHub
parent 939e20b2a0
commit ee401a1256
16 changed files with 238 additions and 254 deletions

View File

@@ -54,6 +54,7 @@ export function setup(context: TestContext) {
context.test('server-web-win32-arm64', ['windows', 'arm64', 'browser'], async () => {
const dir = await context.downloadAndUnpack('server-win32-arm64-web');
context.validateAllAuthenticodeSignatures(dir);
context.validateAllVersionInfo(dir);
const entryPoint = context.getServerEntryPoint(dir);
await testServer(entryPoint);
});
@@ -61,6 +62,7 @@ export function setup(context: TestContext) {
context.test('server-web-win32-x64', ['windows', 'x64', 'browser'], async () => {
const dir = await context.downloadAndUnpack('server-win32-x64-web');
context.validateAllAuthenticodeSignatures(dir);
context.validateAllVersionInfo(dir);
const entryPoint = context.getServerEntryPoint(dir);
await testServer(entryPoint);
});