Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
32 lines
No EOL
762 B
Text
32 lines
No EOL
762 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "step", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return step;
|
|
}
|
|
});
|
|
const _test = require("@playwright/test");
|
|
async function step(_testInfo, props, handler) {
|
|
let result;
|
|
let reportedError;
|
|
try {
|
|
await _test.test.step(props.title, async ()=>{
|
|
result = await handler(({ error })=>{
|
|
reportedError = error;
|
|
if (reportedError) {
|
|
throw reportedError;
|
|
}
|
|
});
|
|
});
|
|
} catch (error) {
|
|
if (error !== reportedError) {
|
|
throw error;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
//# sourceMappingURL=step.js.map |