Skip to content

Commit bf3b5c2

Browse files
committed
ctco-dev: remove unneeded testing
1 parent cb626e8 commit bf3b5c2

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,8 @@ cache:
1212
install: true
1313
script:
1414
- 'if [ $TEST_SUITE = "simple" ]; then tasks/e2e-simple.sh; fi'
15-
- 'if [ $TEST_SUITE = "installs" ]; then tasks/e2e-installs.sh; fi'
1615
- 'if [ $TEST_SUITE = "kitchensink" ]; then tasks/e2e-kitchensink.sh; fi'
17-
- 'if [ $TEST_SUITE = "old-node" ]; then tasks/e2e-old-node.sh; fi'
1816
env:
1917
matrix:
2018
- TEST_SUITE=simple
21-
- TEST_SUITE=installs
2219
- TEST_SUITE=kitchensink

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Just create a project, and you’re good to go.
3939
To create a new app, run a single command:
4040

4141
```sh
42-
npx create-react-app my-app
42+
npx create-react-app --scripts-version=@aeldar/react-scripts my-app
4343
```
4444

4545
*([npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b) comes with npm 5.2+ and higher, see [instructions for older npm versions](https://gist.github.com/gaearon/4064d3c23a77c74a3614c498a8bb1c5f))*

packages/react-scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aeldar/react-scripts",
3-
"version": "1.1.4-1",
3+
"version": "1.1.4-2",
44
"description": "Configuration and scripts for Create React App. Modified by @aeldar",
55
"repository": "aeldar/create-react-app",
66
"license": "MIT",

tasks/e2e-kitchensink.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ git clean -df
100100

101101
# Install the app in a temporary location
102102
cd $temp_app_path
103-
npx create-react-app --internal-testing-template="$root_path"/packages/react-scripts/fixtures/kitchensink test-kitchensink
103+
npx create-react-app --scripts-version=@aeldar/react-scripts --internal-testing-template="$root_path"/packages/react-scripts/fixtures/kitchensink test-kitchensink
104104

105105
# Install the test module
106106
cd "$temp_module_path"

tasks/local-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ while [ "$1" != "" ]; do
4949
shift
5050
done
5151

52-
test_command="./tasks/e2e-simple.sh && ./tasks/e2e-kitchensink.sh && ./tasks/e2e-installs.sh"
52+
test_command="./tasks/e2e-simple.sh && ./tasks/e2e-kitchensink.sh"
5353
case ${test_suite} in
5454
"all")
5555
;;

0 commit comments

Comments
 (0)