Sha256: 9f4652e6efae913756e6b49d0f53571bb12c3e63ab79c0e2e44e0093901ef65f
Contents?: true
Size: 356 Bytes
Versions: 4
Compression:
Stored size: 356 Bytes
Contents
import { test, expect } from "@playwright/test"; import { app, appScenario } from '../../support/on-rails'; test.describe("Rails using scenarios examples", () => { test.beforeEach(async ({ page }) => { await app('clean'); }); test("setup basic scenario", async ({ page }) => { await appScenario('basic'); await page.goto("/"); }); });
Version data entries
4 entries across 4 versions & 1 rubygems