In this video· click a step to jump to it
Test recording
Team Pulse — app walkthrough
68,824 ms · 12,809 pixels changed
We built this regression test for app.goteampulse.io — it's yours to keep, free.
Take this test with you
This is a real Playwright test, recorded against app.goteampulse.io. Claim it into your own workspace and re-run it on every deploy — free.
export async function test(page, baseUrl, screenshotPath, stepLogger) {
const shot = (n, s) => screenshotPath.replace('.png', `-${n}-${s}.png`);
const ORIGIN = new URL("https://app.goteampulse.io/project/f1d3ffc4-3390-40a3-9c5f-fb685986181c?tab=tasks").origin;
page.setDefaultTimeout(8000);
page.setDefaultNavigationTimeout(22000);
await page.context().setExtraHTTPHeaders({ 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36' }).catch(function(){});
// block heavy third-party noise: speeds networkidle + removes console-error reds
for (const pat of ['**/client.crisp.chat/**','**/widget.intercom.io/**','**/*.intercomcdn.com/**','**/js.stripe.com/**','**/*.sentry-cdn.com/**','**/*.sentry.io/**','**/cdn.segment.com/**','**/*.hotjar.com/**','**/*.fullstory.com/**','**/connect.facebook.net/**','**/googletagmanager.com/**','**/google-analytics.com/**','**/cdn-cgi/scripts/**/email-decode.min.js']) {
await page.route(pat, function(r){ r.abort().catch(function(){}); }).catch(function(){});
}
// Scenario 1: public hero
await page.goto("https://goteampulse.io/", { waitUntil: 'domcontentloaded' });Checks run
Notes from the demo run
AI-generatedTeam Pulse is a clean all-in-one project hub (tasks, board, chat, files, activity) with Supabase email+password auth. Its standout move is AI-generated workflow setup: from a one-line project description it produced a tailored Kanban with domain-specific columns, removing the blank-board problem most PM tools start with.
- AI workflow generationFrom the description 'roll out visual-regression testing before launch', the AI created themed columns — Test Backlog, Environment Setup, Visual Checks, QA Review, Resolved & Live — instead of generic To-do/Doing/Done. That is a genuinely smart onboarding moment.
- One hub per projectEach project bundles Tasks, Board, Chat, Files and Activity behind a single header — discussions stay attached to the work instead of scattering across tools.
- No-card free tierTwo projects free, a 14-day Pro trial in one click, and a 4-step 'Build Your Workspace' checklist keep the first session frictionless.
- Quiet AI generationGenerating the workflow took ~15s while the sidebar still read 'No projects yet' and the dialog showed little progress detail — a visible progress state would reassure the user it is working.
- Onboarding checklist persistsThe 'Build Your Workspace' nudge stays pinned bottom-right across routes even after the first project exists.
Visual change
Share this run
Proof your app is not AI slop
This test was built for app.goteampulse.io — claim it free
One click copies the test and baseline screenshots into your own Lastest workspace. Re-run on every deploy and catch regressions before your users do — free, no card required.


