You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -28,11 +28,11 @@ pull request is deemed satisfactory, the developer will be asked to make a pull
28
28
request to the main plotly.js repo and may be asked to squash some commits
29
29
before doing so.
30
30
31
-
Developers should `git rebase` their local branch off the latest `master` before
31
+
Developers should `git rebase` their local branch off the latest `master` before
32
32
opening a pull request.
33
33
34
34
Note that it is forbidden to force push (i.e. `git push -f`) to remote branches
35
-
associated with opened pull requests. Force pushes make it hard for maintainers
35
+
associated with opened pull requests. Force pushes make it hard for maintainers
36
36
to keep track of updates. Therefore, if required, please
37
37
`git merge master` into your PR branch instead of `git rebase master`.
38
38
@@ -157,6 +157,18 @@ which shows the baseline image, the generated image, the diff and the json mocks
157
157
158
158
To view the results of a run on CircleCI, download the `build/test_images/` and `build/test_images_diff/` artifacts into your local repo and then run `npm run start-image_viewer`.
159
159
160
+
### Note on testing our `mapbox-gl` integration
161
+
162
+
Creating `mapbox-gl` graphs requires an
163
+
[`accessToken`](https://www.mapbox.com/help/define-access-token/). To make sure
164
+
that mapbox image and jasmine tests run properly, locate your Mapbox access
165
+
token and run:
166
+
167
+
168
+
```bash
169
+
export MAPBOX_ACCESS_TOKEN="<your access token>"&& npm run pretest
0 commit comments