-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: CLI argument to filter tests by projects (#8612)
- Loading branch information
1 parent
c6e63f3
commit 0e0eeed
Showing
18 changed files
with
438 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
import {resolve} from 'path'; | ||
|
||
import run, { | ||
RunJestJsonResult, | ||
RunJestResult, | ||
json as runWithJson, | ||
} from '../runJest'; | ||
|
||
describe('Given a config with two named projects, first-project and second-project', () => { | ||
const dir = resolve(__dirname, '..', 'select-projects'); | ||
|
||
describe('when Jest is started with `--selectProjects first-project`', () => { | ||
let result: RunJestJsonResult; | ||
beforeAll(() => { | ||
result = runWithJson('select-projects', [ | ||
'--selectProjects', | ||
'first-project', | ||
]); | ||
}); | ||
it('runs the tests in the first project only', () => { | ||
expect(result.json).toHaveProperty('success', true); | ||
expect(result.json).toHaveProperty('numTotalTests', 1); | ||
expect(result.json.testResults.map(({name}) => name)).toEqual([ | ||
resolve(dir, '__tests__/first-project.test.js'), | ||
]); | ||
}); | ||
it('prints that only first-project will run', () => { | ||
expect(result.stderr).toMatch(/^Running one project: first-project/); | ||
}); | ||
}); | ||
|
||
describe('when Jest is started with `--selectProjects second-project`', () => { | ||
let result: RunJestJsonResult; | ||
beforeAll(() => { | ||
result = runWithJson('select-projects', [ | ||
'--selectProjects', | ||
'second-project', | ||
]); | ||
}); | ||
it('runs the tests in the second project only', () => { | ||
expect(result.json).toHaveProperty('success', true); | ||
expect(result.json).toHaveProperty('numTotalTests', 1); | ||
expect(result.json.testResults.map(({name}) => name)).toEqual([ | ||
resolve(dir, '__tests__/second-project.test.js'), | ||
]); | ||
}); | ||
it('prints that only second-project will run', () => { | ||
expect(result.stderr).toMatch(/^Running one project: second-project/); | ||
}); | ||
}); | ||
|
||
describe('when Jest is started with `--selectProjects first-project second-project`', () => { | ||
let result: RunJestJsonResult; | ||
beforeAll(() => { | ||
result = runWithJson('select-projects', [ | ||
'--selectProjects', | ||
'first-project', | ||
'second-project', | ||
]); | ||
}); | ||
it('runs the tests in the first and second projects', () => { | ||
expect(result.json).toHaveProperty('success', true); | ||
expect(result.json).toHaveProperty('numTotalTests', 2); | ||
expect(result.json.testResults.map(({name}) => name).sort()).toEqual([ | ||
resolve(dir, '__tests__/first-project.test.js'), | ||
resolve(dir, '__tests__/second-project.test.js'), | ||
]); | ||
}); | ||
it('prints that both first-project and second-project will run', () => { | ||
expect(result.stderr).toMatch( | ||
/^Running 2 projects:\n- first-project\n- second-project/, | ||
); | ||
}); | ||
}); | ||
|
||
describe('when Jest is started without providing `--selectProjects`', () => { | ||
let result: RunJestJsonResult; | ||
beforeAll(() => { | ||
result = runWithJson('select-projects', []); | ||
}); | ||
it('runs the tests in the first and second projects', () => { | ||
expect(result.json).toHaveProperty('success', true); | ||
expect(result.json).toHaveProperty('numTotalTests', 2); | ||
expect(result.json.testResults.map(({name}) => name).sort()).toEqual([ | ||
resolve(dir, '__tests__/first-project.test.js'), | ||
resolve(dir, '__tests__/second-project.test.js'), | ||
]); | ||
}); | ||
it('does not print which projects are run', () => { | ||
expect(result.stderr).not.toMatch(/^Running/); | ||
}); | ||
}); | ||
|
||
describe('when Jest is started with `--selectProjects third-project`', () => { | ||
let result: RunJestResult; | ||
beforeAll(() => { | ||
result = run('select-projects', ['--selectProjects', 'third-project']); | ||
}); | ||
it('fails', () => { | ||
expect(result).toHaveProperty('failed', true); | ||
}); | ||
it('prints that no project was found', () => { | ||
expect(result.stdout).toMatch( | ||
/^You provided values for --selectProjects but no projects were found matching the selection/, | ||
); | ||
}); | ||
}); | ||
}); | ||
|
||
describe('Given a config with two projects, first-project and an unnamed project', () => { | ||
const dir = resolve(__dirname, '..', 'select-projects-missing-name'); | ||
|
||
describe('when Jest is started with `--selectProjects first-project`', () => { | ||
let result: RunJestJsonResult; | ||
beforeAll(() => { | ||
result = runWithJson('select-projects-missing-name', [ | ||
'--selectProjects', | ||
'first-project', | ||
]); | ||
}); | ||
it('runs the tests in the first project only', () => { | ||
expect(result.json.success).toBe(true); | ||
expect(result.json.numTotalTests).toBe(1); | ||
expect(result.json.testResults.map(({name}) => name)).toEqual([ | ||
resolve(dir, '__tests__/first-project.test.js'), | ||
]); | ||
}); | ||
it('prints that a project does not have a name', () => { | ||
expect(result.stderr).toMatch( | ||
/^You provided values for --selectProjects but a project does not have a name/, | ||
); | ||
}); | ||
it('prints that only first-project will run', () => { | ||
const stderrThirdLine = result.stderr.split('\n')[2]; | ||
expect(stderrThirdLine).toMatch(/^Running one project: first-project/); | ||
}); | ||
}); | ||
|
||
describe('when Jest is started without providing `--selectProjects`', () => { | ||
let result: RunJestJsonResult; | ||
beforeAll(() => { | ||
result = runWithJson('select-projects-missing-name', []); | ||
}); | ||
it('runs the tests in the first and second projects', () => { | ||
expect(result.json.success).toBe(true); | ||
expect(result.json.numTotalTests).toBe(2); | ||
expect(result.json.testResults.map(({name}) => name).sort()).toEqual([ | ||
resolve(dir, '__tests__/first-project.test.js'), | ||
resolve(dir, '__tests__/second-project.test.js'), | ||
]); | ||
}); | ||
it('does not print that a project has no name', () => { | ||
expect(result.stderr).not.toMatch( | ||
/^You provided values for --selectProjects but a project does not have a name/, | ||
); | ||
}); | ||
}); | ||
|
||
describe('when Jest is started with `--selectProjects third-project`', () => { | ||
let result: RunJestResult; | ||
beforeAll(() => { | ||
result = run('select-projects-missing-name', [ | ||
'--selectProjects', | ||
'third-project', | ||
]); | ||
}); | ||
it('fails', () => { | ||
expect(result).toHaveProperty('failed', true); | ||
}); | ||
it('prints that a project does not have a name', () => { | ||
expect(result.stdout).toMatch( | ||
/^You provided values for --selectProjects but a project does not have a name/, | ||
); | ||
}); | ||
it('prints that no project was found', () => { | ||
const stdoutThirdLine = result.stdout.split('\n')[2]; | ||
expect(stdoutThirdLine).toMatch( | ||
/^You provided values for --selectProjects but no projects were found matching the selection/, | ||
); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
e2e/select-projects-missing-name/__tests__/first-project.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
it('should run when first-project appears in selectProjects', () => { | ||
expect(true).toBe(true); | ||
}); |
10 changes: 10 additions & 0 deletions
10
e2e/select-projects-missing-name/__tests__/second-project.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
it('should run when second-project appears in selectProjects', () => { | ||
expect(true).toBe(true); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"description": "Testing the behaviour of --selectProjects when a project does not have a name", | ||
"jest": { | ||
"projects": [ | ||
{ | ||
"displayName": "first-project", | ||
"testMatch": [ | ||
"<rootDir>/__tests__/first-project.test.js" | ||
], | ||
"testEnvironment": "node" | ||
}, | ||
{ | ||
"testMatch": [ | ||
"<rootDir>/__tests__/second-project.test.js" | ||
], | ||
"testEnvironment": "node" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
it('should run when first-project appears in selectProjects', () => { | ||
expect(true).toBe(true); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
*/ | ||
|
||
it('should run when second-project appears in selectProjects', () => { | ||
expect(true).toBe(true); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"description": "Testing the behaviour of --selectProjects", | ||
"jest": { | ||
"projects": [ | ||
{ | ||
"displayName": "first-project", | ||
"testMatch": [ | ||
"<rootDir>/__tests__/first-project.test.js" | ||
], | ||
"testEnvironment": "node" | ||
}, | ||
{ | ||
"displayName": { | ||
"name": "second-project", | ||
"color": "blue" | ||
}, | ||
"testMatch": [ | ||
"<rootDir>/__tests__/second-project.test.js" | ||
], | ||
"testEnvironment": "node" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.