Skip to content
This repository was archived by the owner on May 25, 2019. It is now read-only.

Commit 21e16f2

Browse files
author
vdemedes
committed
add findTestHelpers()
1 parent f4daaa5 commit 21e16f2

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed

index.js

+17
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,23 @@ AvaFiles.prototype.findTestFiles = function () {
5858
});
5959
};
6060

61+
AvaFiles.prototype.findTestHelpers = function () {
62+
return handlePaths(this.files, ['!**/node_modules/**'], {
63+
cwd: this.cwd,
64+
cache: Object.create(null),
65+
statCache: Object.create(null),
66+
realpathCache: Object.create(null),
67+
symlinks: Object.create(null)
68+
}).then(function (files) {
69+
return files.filter(function (file) {
70+
return multimatch([file], [
71+
'**/fixtures/**',
72+
'**/helpers/**'
73+
]).length > 0;
74+
});
75+
});
76+
};
77+
6178
function getDefaultIgnorePatterns() {
6279
return defaultIgnore.map(function (dir) {
6380
return dir + '/**/*';

readme.md

+8
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ avaFiles.isSource(filePath);
3030
avaFiles.findTestFiles().then(files => {
3131
// files is an array of found test files
3232
});
33+
34+
avaFiles.findTestHelpers().then(files => {
35+
// files is an array of found test helpers and fixtures
36+
});
3337
```
3438

3539

@@ -94,6 +98,10 @@ Path to the file.
9498

9599
Returns a `Promise` for an `Array` of `string` paths to the found test files.
96100

101+
### avaFiles.findTestHelpers()
102+
103+
Returns a `Promise` for an `Array` of `string` paths to the found helper and fixture files.
104+
97105

98106
## License
99107

test.js

+32
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,35 @@ test('findFiles - finds the correct files by default', async t => {
139139
files.sort();
140140
t.deepEqual(files, expected);
141141
});
142+
143+
test('findTestHelpers - honors cwd option', async t => {
144+
const avaFiles = new AvaFiles({
145+
files: ['test/**/*.js'],
146+
cwd: fixture('default-patterns')
147+
});
148+
149+
const files = await avaFiles.findTestHelpers();
150+
t.is(files.length, 2);
151+
t.is(path.basename(files[0]), 'foo-fixt.js');
152+
t.is(path.basename(files[1]), 'test.js');
153+
});
154+
155+
test('findTestHelpers - finds the correct files by default', async t => {
156+
const fixtureDir = fixture('default-patterns');
157+
process.chdir(fixtureDir);
158+
159+
const expected = [
160+
'sub/directory/__tests__/fixtures/foo.js',
161+
'sub/directory/__tests__/helpers/foo.js',
162+
'test/fixtures/foo-fixt.js',
163+
'test/helpers/test.js'
164+
].map(function (file) {
165+
return path.join(fixtureDir, file);
166+
}).sort();
167+
168+
const avaFiles = new AvaFiles();
169+
170+
const files = await avaFiles.findTestHelpers();
171+
files.sort();
172+
t.deepEqual(files, expected);
173+
});

0 commit comments

Comments
 (0)