File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,3 @@ release:
1919format :
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-
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ const baseURL = "https://tiles.dev.macrostrat.org";
88const tilePath = "/maps/bounds/3/2/4" ;
99
1010describe ( "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 )
You can’t perform that action at this time.
0 commit comments