Skip to content

Commit 69d8796

Browse files
committed
all api tests passing
1 parent d7c2550 commit 69d8796

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

Makefile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,3 @@ release:
1919
format:
2020
# Format the code using Prettier
2121
yarn run prettier --write .
22-
23-
publish:
24-
# Ensure the git repository is clean
25-
@git diff --quiet || (echo "Uncommitted changes present. Please commit or stash them before publishing." && exit 1)
26-
git tag -a v$(VERSION) -m "Version $(VERSION)"
27-
git push origin tag v$(VERSION)
28-

api-tests/v2Tests/tiles.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ const baseURL = "https://tiles.dev.macrostrat.org";
88
const tilePath = "/maps/bounds/3/2/4";
99

1010
describe("Tileserver API", function () {
11-
it("should return a valid tile response", function (done) {
11+
this.timeout(10000)
12+
it("should return a valid tile response", function (done) {
1213
request(baseURL)
1314
.get(tilePath)
1415
.expect(200)

0 commit comments

Comments
 (0)