·
330 commits
to main
since this release
Updates:
- Moved to argos-javascript monorepo.
- Enhanced screenshot stability.
Upgrading from v0.0.x
Step 1: Set Up Argos Playwright Reporter:
Setup @argos-ci/playwright/reporter
into your Playwright config:
import { defineConfig } from "@playwright/test";
export default defineConfig({
// ... other configurations ...
reporter: [["list"], ["@argos-ci/playwright/reporter"]],
});
Step 2: Phase Out CLI Usage:
- Remove
argos upload
calls from your CI. (Note: Screenshots now upload through the reporter.) - Delete
@argos-ci/cli
frompackage.json
.