Skip to content

Commit

Permalink
fix: remove failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
cfoust committed Dec 25, 2023
1 parent caac05f commit d3ae9bb
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions pkg/janet/vm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,14 +286,3 @@ func TestVM(t *testing.T) {
require.Error(t, err)
})
}

func TestStacktrace(t *testing.T) {
ctx := context.Background()
vm, err := New(ctx)
require.NoError(t, err)

err = vm.Execute(ctx, `(error "test")`)
require.Error(t, err)
t.Logf("%s", err.Error())
t.Fail()
}

0 comments on commit d3ae9bb

Please sign in to comment.