Ginkgo Testing

Installation
SKILL.md

Ginkgo Testing

Ginkgo is a BDD-style testing framework for Go, primarily used for E2E tests.

E2E Test Structure

test/e2e/
├── suite_test.go    # Suite bootstrap with BeforeSuite/AfterSuite
└── xxx_test.go      # Test specs

Suite Bootstrap

package e2e_test

import (
    "testing"
Installs
First Seen
Ginkgo Testing — futuretea/x-project