Skip to content

Commit

Permalink
add package godoc
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanschalm committed Oct 24, 2024
1 parent c34bf25 commit 9ae2553
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions integration/internal/emulator/doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Package emulator is a minimal version of the Flow Emulator (https://github.com/onflow/flow-emulator)
// for use within some integration tests for flow-go.
// Using an Emulator is desirable for test cases where:
// - we don't want to, or can't, run the test case against a local Docker network (package integration/testnet)
// - we want the test to include execution of smart contract code in a realistic environment
//
// Before using this package, flow-go's integration tests used the Flow Emulator directly.
// This created a repository-wise circular dependency and complicated version upgrades (see https://github.com/onflow/flow-emulator).
// The main purpose for this package is to replace that dependency with minimal ongoing
// maintenance overhead.
package emulator

0 comments on commit 9ae2553

Please sign in to comment.