Skip to content

Commit

Permalink
chore(package): update ava to version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greenkeeper[bot] authored and pvdlg committed Jan 27, 2020
1 parent 5ffdf49 commit 55f05af
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
7 changes: 6 additions & 1 deletion package.json
Expand Up @@ -3,6 +3,11 @@
"description": "semantic-release plugin to create or update a changelog file",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"ava": {
"files": [
"test/**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/semantic-release/changelog/issues"
},
Expand All @@ -17,7 +22,7 @@
"lodash": "^4.17.4"
},
"devDependencies": {
"ava": "^2.0.0",
"ava": "^3.1.0",
"clear-module": "^4.0.0",
"codecov": "^3.0.0",
"nyc": "^15.0.0",
Expand Down
12 changes: 6 additions & 6 deletions test/integration.test.js
@@ -1,9 +1,9 @@
import path from 'path';
import test from 'ava';
import {outputFile, readFile} from 'fs-extra';
import {stub} from 'sinon';
import clearModule from 'clear-module';
import tempy from 'tempy';
const path = require('path');
const test = require('ava');
const {outputFile, readFile} = require('fs-extra');
const {stub} = require('sinon');
const clearModule = require('clear-module');
const tempy = require('tempy');

test.beforeEach(t => {
// Clear npm cache to refresh the module state
Expand Down
12 changes: 6 additions & 6 deletions test/prepare.test.js
@@ -1,9 +1,9 @@
import path from 'path';
import test from 'ava';
import {outputFile, readFile} from 'fs-extra';
import {stub} from 'sinon';
import tempy from 'tempy';
import prepare from '../lib/prepare';
const path = require('path');
const test = require('ava');
const {outputFile, readFile} = require('fs-extra');
const {stub} = require('sinon');
const tempy = require('tempy');
const prepare = require('../lib/prepare');

test.beforeEach(t => {
// Stub the logger
Expand Down
4 changes: 2 additions & 2 deletions test/verify.test.js
@@ -1,5 +1,5 @@
import test from 'ava';
import verify from '../lib/verify';
const test = require('ava');
const verify = require('../lib/verify');

test('Verify String "changelogFile" and "chagngelogTitle"', t => {
const changelogFile = 'docs/changelog.txt';
Expand Down

0 comments on commit 55f05af

Please sign in to comment.