Skip to content

Commit 113dfce

Browse files
committed
Revert "chore: temporary skip unit tests"
This reverts commit 90311c4.
1 parent 90311c4 commit 113dfce

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

actor/shape_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,6 @@ func TestPlaneComputeAABB(t *testing.T) {
496496

497497
for _, tt := range tests {
498498
t.Run(tt.name, func(t *testing.T) {
499-
t.SkipNow()
500499
tt.plane.ComputeAABB(tt.transform)
501500
aabb := tt.plane.GetAABB()
502501

@@ -555,7 +554,6 @@ func TestPlaneGetContactFeature(t *testing.T) {
555554

556555
for _, tt := range tests {
557556
t.Run(tt.name, func(t *testing.T) {
558-
t.SkipNow()
559557
features := tt.plane.GetContactFeature(tt.direction)
560558

561559
// Doit retourner exactement 4 points pour un plan

constraint/constraint_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,6 @@ func TestClampSmallVelocities(t *testing.T) {
130130

131131
for _, tt := range tests {
132132
t.Run(tt.name, func(t *testing.T) {
133-
t.SkipNow()
134133
rb := &actor.RigidBody{
135134
Velocity: tt.initialVelocity,
136135
}

gjk/gjk_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,6 @@ func TestGJK_ExtremePrecision(t *testing.T) {
371371
// Degenerate simplex cases
372372
func TestGJK_DegenerateSimplex(t *testing.T) {
373373
t.Run("colinear points in tetrahedron", func(t *testing.T) {
374-
t.SkipNow()
375374
simplex := Simplex{
376375
{0, 0, 0},
377376
{1, 0, 0},
@@ -404,7 +403,6 @@ func TestGJK_DegenerateSimplex(t *testing.T) {
404403
})
405404

406405
t.Run("zero-length edge in line", func(t *testing.T) {
407-
t.SkipNow()
408406
simplex := Simplex{
409407
{1e-15, 0, 0},
410408
{1e-15, 1e-15, 0},
@@ -548,7 +546,6 @@ func TestLine(t *testing.T) {
548546
})
549547

550548
t.Run("origin behind point A", func(t *testing.T) {
551-
t.SkipNow()
552549
simplex := Simplex{
553550
{3, 0, 0}, // B
554551
{1, 0, 0}, // A

0 commit comments

Comments
 (0)