22 lines
899 B
JavaScript
22 lines
899 B
JavaScript
import { initialize, getActorTestDir, runActor, expect, hasNestedKey } from '../tools.mjs';
|
|
|
|
const testActorDirname = getActorTestDir(import.meta.url);
|
|
await initialize(testActorDirname);
|
|
|
|
const { stats, defaultKeyValueStoreItems } = await runActor(testActorDirname);
|
|
|
|
// All requests should fail to test the error snapshots
|
|
await expect(stats.requestsFailed === 4, 'All requests failed');
|
|
|
|
let totalErrorHtmlFiles = 0;
|
|
for (const error of Object.values(stats.errors)) {
|
|
if (hasNestedKey(error, 'firstErrorHtmlUrl')) {
|
|
totalErrorHtmlFiles++;
|
|
}
|
|
}
|
|
|
|
// Count of error HTML files stored in the stats to make sure they are saved
|
|
await expect(totalErrorHtmlFiles === 3, 'Number of HTML error files in stats should be 3');
|
|
// Count of error HTML files stored in the Key-Value store
|
|
await expect(defaultKeyValueStoreItems.length === 3, 'Number of HTML error files in KV store should be 3');
|