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
14 changes: 0 additions & 14 deletions .github/workflows/integration.anchorPlatformTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,6 @@ jobs:
name: anchor platform test
runs-on: ubuntu-latest
steps:
- name: Checkout Java Anchor SDK
uses: actions/checkout@v2
with:
repository: stellar/java-stellar-anchor-sdk
- name: Build docker
run:
docker build --build-arg BASE_IMAGE=gradle:7.6.4-jdk17 -t
anchor-platform:local ./
- name: Run docker
run:
docker compose -f
service-runner/src/main/resources/docker-compose.yaml up -d
- name: Wait for docker to be ready
run: sleep 300 && curl http://localhost:8080/.well-known/stellar.toml
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
Expand Down
11 changes: 3 additions & 8 deletions @stellar/typescript-wallet-sdk/test/integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ against.

## To run tests locally:

- follow the steps defined in the
(.github/workflows/integration.anchorPlatformTest.yml)[https://github.com/stellar/typescript-wallet-sdk/blob/main/.github/workflows/integration.anchorPlatformTest.yml]
file locally

1. Clone the java-stellar-anchor-sdk repo locally
2. Run the docker build command
3. Run the docker command
4. Run the anchorPlatform tests from this repo
```
yarn test:anchorplatform:ci
```
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ let wallet;
let stellar;
let anchor;
let accountKp;
const anchorUrl = "http://localhost:8080";
const anchorUrl = "https://anchor-sep-server-dev.stellar.org/";

describe("Anchor Platform Integration Tests", () => {
beforeAll(async () => {
Expand Down Expand Up @@ -69,6 +69,7 @@ describe("Anchor Platform Integration Tests", () => {
params: {
asset_code: "USDC",
account: accountKp.publicKey,
type: "SEPA",
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't required by SEP-6 but Anchor Platform started requiring it.

},
});
expect(dResp.id).toBeTruthy();
Expand Down