mirror of
https://github.com/grafana/grafana.git
synced 2025-01-15 11:12:50 -06:00
7bca69849f
* Mark Scenes feature toggles as GA * Move old arch e2e to a new folder * Run E2E on scenes by default * Upgrade e2e-selectors to ensure the tests in Playwright works
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import { e2e } from '../index';
|
|
|
|
export const assertSuccessNotification = () => {
|
|
if (e2e.components.Alert.alertV2) {
|
|
e2e.components.Alert.alertV2('success').should('exist');
|
|
} else {
|
|
e2e.components.Alert.alert('success').should('exist');
|
|
}
|
|
};
|