Skip to content

Commit

Permalink
Showing 5 changed files with 1,981 additions and 1,328 deletions.
2 changes: 1 addition & 1 deletion docs/recipes/typescript.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ Translations: [Español](https://github.com/avajs/ava-docs/blob/master/es_ES/doc

AVA comes bundled with a TypeScript definition file. This allows developers to leverage TypeScript for writing tests.

This guide assumes you've already set up TypeScript for your project. Note that AVA's definition has been tested with version 3.5.1.
This guide assumes you've already set up TypeScript for your project. Note that AVA's definition has been tested with version 3.5.2.

## Configuring AVA to compile TypeScript files on the fly

8 changes: 4 additions & 4 deletions lib/globs.js
Original file line number Diff line number Diff line change
@@ -98,17 +98,17 @@ exports.hasExtension = hasExtension;
const findFiles = async (cwd, patterns) => {
const files = await globby(patterns, {
absolute: true,
brace: true,
case: false,
braceExpansion: true,
caseSensitiveMatch: false,
cwd,
dot: false,
expandDirectories: false,
extglob: true,
followSymlinkedDirectories: true,
followSymbolicLinks: true,
gitignore: false,
globstar: true,
ignore: defaultIgnorePatterns,
matchBase: false,
baseNameMatch: false,
onlyFiles: true,
stats: false,
unique: true
Loading

0 comments on commit e528ad2

Please sign in to comment.