Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
docker:
# specify the version you desire here
- image: circleci/node:7.10

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
Expand All @@ -32,6 +32,6 @@ jobs:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!

- run: yarn run lint
- run: yarn run test
2 changes: 1 addition & 1 deletion endpoints/weather/tests/integration_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('weather', () => {
request.get(params, resultHandler)
})

describe('getAvailableStations', () => {
describe.skip('getAvailableStations', () => {
it('should return an array of objects containing correct fields', (done) => {
const fieldsToCheckFor = ['name', 'id']
const params = helpers.testRequestParams('/weather/getAvailableStations')
Expand Down
Loading