Skip to content

Commit

Permalink
Repair tests
Browse files Browse the repository at this point in the history
Closes #293
  • Loading branch information
bcomnes committed Apr 10, 2019
1 parent 25025d6 commit 26ad878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test": "run-s test:*",
"test:ava": "nyc --reporter=lcov ava --verbose && nyc report",
"test:lint": "eslint src",
"test:deps": "dependency-check ./package.json --entry \"src/**/!(*.test).js\" --unused --missing --no-dev --no-peer -i @oclif/plugin-not-found -i @oclif/config -i @oclif/plugin-help -i @oclif/plugin-plugins",
"test:deps": "dependency-check ./package.json --entry \"src/**/!(*.test).js\" --unused --missing --no-dev --no-peer -i @oclif/plugin-not-found -i @oclif/config -i @oclif/plugin-help -i @oclif/plugin-plugins -i netlify-dev-plugin",
"watch": "nyc --reporter=lcov ava --watch",
"prepack": "oclif-dev manifest",
"postpack": "rm -f oclif.manifest.json",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/sites/delete.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const { Command, flags } = require('@oclif/command')

class SitesDeleteCommand extends Command {
async run() {
const { args, raw } = this.parse(SitesDeleteCommand)
const { args } = this.parse(SitesDeleteCommand)

this.log(`delete a site id:`, args.siteID)
this.log(`Implementation coming soon`)
Expand Down

0 comments on commit 26ad878

Please sign in to comment.