diff --git a/e2e/production.spec.ts b/e2e/production.spec.ts new file mode 100644 index 000000000..63a1d87c8 --- /dev/null +++ b/e2e/production.spec.ts @@ -0,0 +1,7 @@ +import { test, expect } from '@playwright/test' + +test('has title', async ({ page }) => { + await page.goto('https://steexp.com/') + + await expect(page).toHaveTitle(/Stellar Explorer/) +})