mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-30 03:23:08 +03:00
store everything you need to know about a test in its directory
This commit is contained in:
1
test/integration/commit/test.json
Normal file
1
test/integration/commit/test.json
Normal file
@ -0,0 +1 @@
|
||||
{ "description": "stage a file and commit the change", "speed": 20 }
|
1
test/integration/mergeConflicts/test.json
Normal file
1
test/integration/mergeConflicts/test.json
Normal file
@ -0,0 +1 @@
|
||||
{ "description": "" }
|
1
test/integration/patchBuilding/test.json
Normal file
1
test/integration/patchBuilding/test.json
Normal file
@ -0,0 +1 @@
|
||||
{ "description": "", "speed": 3 }
|
24
test/integration/patchBuilding2/setup.sh
Normal file
24
test/integration/patchBuilding2/setup.sh
Normal file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
cd $1
|
||||
|
||||
git init
|
||||
|
||||
git config user.email "CI@example.com"
|
||||
git config user.name "CI"
|
||||
|
||||
echo test1 > myfile1
|
||||
git add .
|
||||
git commit -am "myfile1"
|
||||
echo firstline > myfile2
|
||||
echo secondline >> myfile2
|
||||
echo thirdline >> myfile2
|
||||
git add .
|
||||
git commit -am "myfile2"
|
||||
echo firstline2 > myfile2
|
||||
echo secondline >> myfile2
|
||||
echo thirdline2 >> myfile2
|
||||
git commit -am "myfile2 update"
|
||||
echo test3 > myfile3
|
||||
git add .
|
||||
git commit -am "myfile3"
|
1
test/integration/patchBuilding2/test.json
Normal file
1
test/integration/patchBuilding2/test.json
Normal file
@ -0,0 +1 @@
|
||||
{ "description": "", "speed": 3 }
|
1
test/integration/searching/test.json
Normal file
1
test/integration/searching/test.json
Normal file
@ -0,0 +1 @@
|
||||
{ "description": "" }
|
1
test/integration/searchingInStagingPanel/test.json
Normal file
1
test/integration/searchingInStagingPanel/test.json
Normal file
@ -0,0 +1 @@
|
||||
{ "description": "" }
|
1
test/integration/squash/test.json
Normal file
1
test/integration/squash/test.json
Normal file
@ -0,0 +1 @@
|
||||
{ "description": "" }
|
Reference in New Issue
Block a user