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

Add findTestHelpers() to find helpers and fixtures #8

Merged
merged 1 commit into from
Dec 3, 2016

Conversation

vadimdemedes
Copy link
Contributor

Used by avajs/ava#1078, so that we can precompile helpers and fixtures as well.

@@ -30,6 +30,10 @@ avaFiles.isSource(filePath);
avaFiles.findTestFiles().then(files => {
// files is an array of found test files
});

avaFiles.findTestHelpers().then(files => {
// files is an array of found test helpers and fixtures
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd argue that fixtures are different from helpers.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From the point of this method's functionality of precompiling code, they're the same. Are you referring to the function name or comment?

return files.filter(function (file) {
return multimatch([file], [
'**/fixtures/**',
'**/helpers/**'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Helpers may also start with an underscore.

symlinks: Object.create(null)
}).then(function (files) {
return files.filter(function (file) {
return multimatch([file], [
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not just pass files directly to multimatch?

'test/fixtures/foo-fixt.js',
'test/helpers/test.js'
].map(function (file) {
return path.join(fixtureDir, file);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use inline arrow function.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't it be compatible with older Node.js versions?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vdemedes This is the test though, run through Babel with AVA.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I confused this with the other thing, nvm.

@vadimdemedes
Copy link
Contributor Author

Updated PR according to all the feedback, thanks guys!

@sindresorhus
Copy link
Member

LGTM. @novemberborn ?

@vadimdemedes vadimdemedes merged commit ddd0a5d into master Dec 3, 2016
@vadimdemedes vadimdemedes deleted the find-test-helpers branch December 3, 2016 20:05
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants