Skip to content

Commit

Permalink
build: fix changes introduced by bad refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
RiftLurker committed Jan 13, 2018
1 parent f1a9bf1 commit f03884e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:

# run tests!
- run:
name: ava
command: yarn ava
name: test
command: yarn test

- run:
name: lint
Expand Down
4 changes: 2 additions & 2 deletions contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ This section will help you writing code for the OpenScreeps project. It is assum
##### Edit an existing module
1. Install dependencies: `npm install`
2. Make your changes to the module and edit the tests if required
3. Verify the tests are still passing by executing `npm ava`
3. Verify the tests are still passing by executing `npm test`
4. Make sure the readme reflects your changes

##### Create a new module
1. Install dependencies: `npm install`
2. Execute `npm run create` and follow the instructions
3. Create your module and write relevant ava cases
4. Run the tests by executing `npm ava`
4. Run the tests by executing `npm test`
5. Make sure the readme is up to date and contains a relevant example

#### Git Commit Messages
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ You can check the `src/` directory for a list of created modules, the directory
- [Lerna][lerna-npm] for managing the monorepo and cross-dependencies
- [TypeScript][typescript-npm] for statically typed JavaScript
- [@types/screeps][@types/screeps-npm] for the screeps API type definitions
- [AVA][ava-npm] as the ava runner
- [AVA][ava-npm] as the test runner
- [nyc][nyc-npm] for coverage reports

## Contributing
Expand Down

0 comments on commit f03884e

Please sign in to comment.