Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
FROM node:20-alpine

# Link this image to the GitHub repository (shows under the repo's Packages).
LABEL org.opencontainers.image.source="https://github.com/tugkanboz/two-go"
LABEL org.opencontainers.image.source="https://github.com/two-go-testing/two-go"
LABEL org.opencontainers.image.description="Zero-dependency fluent HTTP/API testing library for Node. Runs the two-go test suite."
LABEL org.opencontainers.image.licenses="MIT"

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![npm version](https://img.shields.io/npm/v/two-go.svg)](https://www.npmjs.com/package/two-go)
[![npm downloads](https://img.shields.io/npm/dm/two-go.svg)](https://www.npmjs.com/package/two-go)
[![CI](https://github.com/tugkanboz/two-go/actions/workflows/ci.yml/badge.svg)](https://github.com/tugkanboz/two-go/actions/workflows/ci.yml)
[![CI](https://github.com/two-go-testing/two-go/actions/workflows/ci.yml/badge.svg)](https://github.com/two-go-testing/two-go/actions/workflows/ci.yml)
[![license](https://img.shields.io/npm/l/two-go.svg)](./LICENSE)
[![zero dependencies](https://img.shields.io/badge/dependencies-0-brightgreen.svg)](./package.json)
[![types](https://img.shields.io/badge/types-included-blue.svg)](./src/index.d.ts)
Expand Down Expand Up @@ -609,7 +609,7 @@ test("creating a user", scenario([
A `when` stashes the response on `world`, a `then` asserts on it. For a runnable
end to end suite (a shop with login, cart, checkout, and more) see the
`ecommerce-bdd` example in
[two-go-examples](https://github.com/tugkanboz/two-go-examples).
[two-go-examples](https://github.com/two-go-testing/two-go-examples).

## Importing from OpenAPI or Postman

Expand Down Expand Up @@ -891,7 +891,7 @@ docker run --rm two-go

For full runnable setups, including a Docker Compose example that tests a
microservice next to MySQL and MSSQL, see
[two-go-examples](https://github.com/tugkanboz/two-go-examples).
[two-go-examples](https://github.com/two-go-testing/two-go-examples).

Log in, then use the token:

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tugkanboz/two-go.git"
"url": "git+https://github.com/two-go-testing/two-go.git"
},
"bugs": {
"url": "https://github.com/tugkanboz/two-go/issues"
"url": "https://github.com/two-go-testing/two-go/issues"
},
"homepage": "https://github.com/tugkanboz/two-go#readme"
"homepage": "https://github.com/two-go-testing/two-go#readme"
}
Loading