@se-studio/site-check 2.6.0 → 2.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/smoke-test-one.mjs +6 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/smoke-test-one.mjs
CHANGED
|
@@ -177,9 +177,12 @@ async function loadCacheLogAudit() {
|
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
async function loadSmokeIntegrityModules() {
|
|
180
|
-
const staticModule = await
|
|
181
|
-
|
|
182
|
-
|
|
180
|
+
const [staticModule, configModule, integrityModule] = await Promise.all([
|
|
181
|
+
import(path.join(packageDir, 'dist/smoke-test/static.js')),
|
|
182
|
+
import(path.join(packageDir, 'dist/smoke-test/config.js')),
|
|
183
|
+
import(path.join(packageDir, 'dist/cms-integrity/report.js')),
|
|
184
|
+
]);
|
|
185
|
+
return { ...staticModule, ...configModule, ...integrityModule };
|
|
183
186
|
}
|
|
184
187
|
|
|
185
188
|
const smokeCasesPath = path.join(process.cwd(), 'smoke.cases.json');
|