Skip to content

Commit 1360162

Browse files
committed
fix ci
1 parent c63639d commit 1360162

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/ci-dev.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ jobs:
2727
run: |
2828
npm install --save-dev mocha @types/mocha chai @types/chai
2929
sh prepare_dev.sh
30-
- name: Setup upterm session
31-
if: ${{ always() }}
32-
uses: lhotari/action-upterm@v1
3330
- name: run test
3431
id: ci-test
3532
run: |

service/CkbDevService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export async function cleanCkbLightClientEnv() {
133133
}
134134

135135
export async function stopCkbLightClient() {
136-
await shWithTimeOutNotErr("pkill ckb-light-client",1000)
136+
await shWithTimeOutNotErr("pkill ckb-light",1000)
137137
}
138138

139139
export async function startCkbLightClient() {

test/dev/ckbLightClientCut.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ describe('rollback', function () {
8484
it("transfer roll back ", async () => {
8585
// await miner_block_until_number(1100)
8686
await cleanAndRestartCkbLightClientEnv()
87+
await Sleep(3000);
8788
await initLightClient()
8889
await miner_block()
8990
for (let i = 0; i < 2; i++) {

0 commit comments

Comments
 (0)