Skip to content
This repository has been archived by the owner on Nov 26, 2020. It is now read-only.

Commit

Permalink
imrpoved description to test on a map
Browse files Browse the repository at this point in the history
  • Loading branch information
codeofsumit committed Oct 4, 2019
1 parent 7caad97 commit 3989230
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ Follow these steps to get up and running:
1. clone the repository
2. run `npm install`
3. run `npm start`
4. open `index.html` in your browser
5. run `npm run cypress` to launch the test suite (also nice for TDD).
4. run `npm run cypress` to launch the test suite (also nice for TDD)
5. Launch developing.spec.js, it will open Chrome with a map and leaflet.pm where you can test the changes you make, manually and with the test suite
6. In case you need to write tests for your new feature, create a separate *.spec.js file for your tests or add them to an existing one when appropriate
7 changes: 7 additions & 0 deletions cypress/integration/developing.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
describe('Opens Testing Environment', () => {
const mapSelector = '#map';

it('opens a map in a browser', () => {

});
});

0 comments on commit 3989230

Please sign in to comment.