test: bind order candidate 1.0.1 to exact demo stable

This commit is contained in:
2026-09-04 10:26:48 +08:00
parent cfc82231b3
commit 6e7b2ec0ba
10 changed files with 422 additions and 37 deletions

5
bootstrap.js vendored
View File

@@ -11,10 +11,11 @@ function loadGeneratedSaasModule() {
return require('./dist/saas/generated').GeneratedSaasModule;
}
async function start() {
await prepareSaasServiceHost({
async function start(options = {}) {
const session = await prepareSaasServiceHost({
generated: loadGeneratedSaasModule(),
});
if (options.verifySession) await options.verifySession(session);
requireExactReleaseEnvironment();
return Bootstrap.configure({
baseDir: path.join(__dirname, 'dist'),