# What this PR does - introduce e2e tests in Tilt - support e2e tests commands in Makefile - stabilize local setup ## Which issue(s) this PR fixes https://github.com/grafana/oncall/issues/3492 ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required)
25 lines
1.1 KiB
TypeScript
25 lines
1.1 KiB
TypeScript
import { test } from '../fixtures';
|
|
import { verifyThatAlertGroupIsTriggered } from '../utils/alertGroup';
|
|
import { createEscalationChain, EscalationStep } from '../utils/escalationChain';
|
|
import { generateRandomValue } from '../utils/forms';
|
|
import { createIntegrationAndSendDemoAlert } from '../utils/integrations';
|
|
import { createOnCallSchedule } from '../utils/schedule';
|
|
|
|
test('we can create an oncall schedule + receive an alert', async ({ adminRolePage }) => {
|
|
const { page, userName } = adminRolePage;
|
|
const escalationChainName = generateRandomValue();
|
|
const integrationName = generateRandomValue();
|
|
const onCallScheduleName = generateRandomValue();
|
|
|
|
await createOnCallSchedule(page, onCallScheduleName, userName);
|
|
await createEscalationChain(
|
|
page,
|
|
escalationChainName,
|
|
EscalationStep.NotifyUsersFromOnCallSchedule,
|
|
onCallScheduleName
|
|
);
|
|
|
|
await createIntegrationAndSendDemoAlert(page, integrationName, escalationChainName);
|
|
|
|
await verifyThatAlertGroupIsTriggered(page, integrationName, `Notify on-call from Schedule '${onCallScheduleName}'`);
|
|
});
|