-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a504e9d
commit 717ed2c
Showing
3 changed files
with
95 additions
and
1 deletion.
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,92 @@ | ||
'use strict'; | ||
|
||
const execa = require('execa'); | ||
const { mkdirp, remove, writeFileSync } = require('fs-extra'); | ||
const { join } = require('path'); | ||
|
||
const cli = require.resolve('create-react-app/index.js'); | ||
|
||
jest.setTimeout(1000 * 60 * 5); | ||
|
||
const projectName = 'test-app'; | ||
const genPath = join(__dirname, projectName); | ||
|
||
const generatedFiles = ['.gitignore', 'package.json', 'src', 'yarn.lock']; | ||
|
||
beforeEach(() => remove(genPath)); | ||
afterEach(() => remove(genPath)); | ||
|
||
const run = (args, options) => execa('node', [cli].concat(args), options); | ||
|
||
describe('create-react-app', () => { | ||
it('asks to supply an argument if none supplied', async () => { | ||
const { stderr } = await run([], { reject: false }); | ||
expect(stderr).toContain('Please specify the project directory'); | ||
}); | ||
|
||
it('creates a project on supplying a name as the argument', async () => { | ||
await run([projectName], { cwd: __dirname }); | ||
|
||
// Assert for the generated files | ||
generatedFiles.forEach(file => expect(join(genPath, file)).toBeTruthy()); | ||
}); | ||
|
||
it('warns about conflicting files in path', async () => { | ||
// Create the temporary directory | ||
await mkdirp(genPath); | ||
|
||
// Create a package.json file | ||
const pkgJson = join(genPath, 'package.json'); | ||
writeFileSync(pkgJson, '{ "foo": "bar" }'); | ||
|
||
const { stdout } = await run([projectName], { | ||
cwd: __dirname, | ||
reject: false, | ||
}); | ||
|
||
// Assert for the expected message | ||
expect(stdout).toContain( | ||
`The directory ${projectName} contains files that could conflict` | ||
); | ||
}); | ||
|
||
it('creates a project in the current directory', async () => { | ||
// Create temporary directory | ||
await mkdirp(genPath); | ||
|
||
// Create a project in the current directory | ||
await run(['.'], { cwd: genPath }); | ||
|
||
// Assert for the generated files | ||
generatedFiles.forEach(file => expect(join(genPath, file)).toBeTruthy()); | ||
}); | ||
|
||
it('uses npm as the package manager', async () => { | ||
await run([projectName, '--use-npm'], { | ||
cwd: __dirname, | ||
stdio: 'inherit', | ||
}); | ||
|
||
// Assert for the generated files | ||
const generatedFilesWithNpm = [ | ||
...generatedFiles.filter(file => file !== 'yarn.lock'), | ||
'package-lock.json', | ||
]; | ||
|
||
generatedFilesWithNpm.forEach(file => | ||
expect(join(genPath, file)).toBeTruthy() | ||
); | ||
}); | ||
|
||
it('creates a project in the current based on the typescript template', async () => { | ||
await run([projectName, '--template', 'typescript'], { | ||
cwd: __dirname, | ||
stdio: 'inherit', | ||
}); | ||
|
||
// Assert for the generated files | ||
[...generatedFiles, 'tsconfig.json'].forEach(file => | ||
expect(join(genPath, file)).toBeTruthy() | ||
); | ||
}); | ||
}); |