copilot-instructions e2e-testing.instructions.md

copilot-instructions e2e-testing.instructions.md is an instructions file for GitHub Copilot from ThiagoGuislotti/copilot-instructions. It costs 1,134 tokens per session, scanned A, original, MIT.

A set of rules for end-to-end testing, which checks a complete user flow through an application. It covers Playwright, Cypress, .NET tools, JavaScript test tools, authentication, test data, and the Arrange-Act-Assert structure.

In plain words
What is it for?
Use it when testing login and other browser flows, configuring test environments, arranging test data, handling authentication, and writing integration or end-to-end tests.
Why use it?
It provides a consistent way to test real workflows and reduces unclear or fragile tests in local development and continuous integration.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/thiagoguislotti/copilot-instructions/e2e-testing
Clone the repo
git clone --depth 1 https://github.com/ThiagoGuislotti/copilot-instructions

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for copilot-instructions e2e-testing.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/thiagoguislotti/copilot-instructions/e2e-testing.svg)](https://agentmods.dev/instructions/thiagoguislotti/copilot-instructions/e2e-testing)
Your own site
<a href="https://agentmods.dev/instructions/thiagoguislotti/copilot-instructions/e2e-testing"><img src="https://agentmods.dev/badge/instructions/thiagoguislotti/copilot-instructions/e2e-testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,134 This file is loaded in full into every session.
When invoked 1,134 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01134 $0.01134
Opus 5 $0.00567 $0.00567
Sonnet 5 $0.00227 $0.00227
Haiku 4.5 $0.00113 $0.00113

Measured 3d ago against content hash 324804003c20, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

copilot-instructions e2e-testing.instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/instructions/e2e-testing.instructions.md · 125 lines

How it starts

The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Frameworks

Prefer Playwright (web); Cypress as alternative; SpecFlow (BDD .NET); xUnit/NUnit for .NET integration; Jest/Vitest for JS; configure in docker‑compose for CI/CD; use Testcontainers when possible.

// Playwright example
import { test, expect } from '@playwright/test';

test('user can login', async ({ page }) => {
  await page.goto('/login');
  await page.fill('[data-testid="email"]', '[email protected]');
  await page.fill('[data-testid="password"]', 'password');
  await page.click('[data-testid="submit"]');
  await expect(page).toHaveURL('/dashboard');
});

Test Structure

MANDATORY AAA Pattern: All tests MUST follow Arrange-Act-Assert pattern for clarity and maintainability.

AAA Rules (Universal - All Languages):

  • Arrange: Setup test data, mocks, preconditions, and initial state
  • Act: Execute ONE operation being tested
  • Assert: Verify ONE logical outcome (multiple assertions OK if related)
  • Comments: Add explanatory note below AAA marker ONLY for critical/complex logic
    • Simple operations: NO extra comments needed
    • Complex logic: Add brief explanation of WHY or WHAT makes it critical
    • Avoid: Redundant descriptions of obvious operations
// C# Example
[Test]
public async Task Should_CreateOrder()
{
    // Arrange
    // Setup: prepare API client and valid order
    var client = _factory.CreateClient();
    var order = OrderFactory.CreateValid();

    // Act
    // Execute: send POST request
    var response = await client.PostAsJsonAsync("/orders", order);

    // Assert
    // Verify: successful creation with correct status
    response.StatusCode.Should().Be(HttpStatusCode.Created);
    var created = await response.Content.ReadAsAsync<Order>();
    created.Id.Should().BeGreaterThan(0);
}
// TypeScript/Playwright Example
test('user can complete checkout', async ({ page }) => {
  // Arrange
  // Setup: login and add items to cart
  await loginAsUser(page, '[email protected]');
  await addItemToCart(page, 'product-123');

  // Act
  // Execute: complete checkout process
  await page.click('[data-testid="checkout-btn"]');
  await fillPaymentDetails(page);
  await page.click('[data-testid="place-order"]');

  // Assert
  // Critical: verify order confirmation and inventory update
  await expect(page.locator('[data-testid="order-success"]')).toBeVisible();
  await expect(page).toHaveURL(/\/orders\/\d+/);
});

Read the full file on GitHub · 125 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 125 lines · 1,134 tokens per session scan A 324804003c20

Subscribe to this mod's changes

copilot-instructions e2e-testing.instructions.md is an instructions file published in the GitHub repository ThiagoGuislotti/copilot-instructions (2 stars, last pushed 2mo ago), licensed MIT. It adds 1,134 tokens to every session, about $0.0057 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.