Skip to content

Commit

Permalink
enable liveness e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
huangzhiran committed Jan 16, 2025
1 parent 3aaa301 commit aaf9d13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
lfs: true

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
5 changes: 2 additions & 3 deletions e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ func TestE2E(t *testing.T) {
waitSettled(t, taskid, apiNodeUrl)
})
t.Run("gnark-liveness", func(t *testing.T) {
t.Skip()
// Register project
projectOwnerKey, err := crypto.GenerateKey()
require.NoError(t, err)
Expand All @@ -163,8 +162,8 @@ func TestE2E(t *testing.T) {
registerIoID(t, chainEndpoint, contracts, deviceKey, projectID)
registerProject(t, chainEndpoint, contracts, projectOwnerKey, projectID, common.HexToAddress(contracts.MockDappLiveness))

gnarkCodePath := "./testdata/pebble.circuit"
gnarkMetadataPath := "./testdata/pebble.pk"
gnarkCodePath := "./testdata/liveness.circuit"
gnarkMetadataPath := "./testdata/liveness.pk"
project := &project.Project{Configs: []*project.Config{{
Version: "v1",
VMTypeID: 1,
Expand Down

0 comments on commit aaf9d13

Please sign in to comment.