Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
temporarily commented out integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-stauffer committed Sep 28, 2023
1 parent c7bacf6 commit c9f4b5f
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions inegration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,28 @@

package main

import (
"testing"
// import (
// "testing"

"github.com/eliona-smart-building-assistant/app-integration-tests/app"
"github.com/eliona-smart-building-assistant/app-integration-tests/assert"
"github.com/eliona-smart-building-assistant/app-integration-tests/test"
)
// "github.com/eliona-smart-building-assistant/app-integration-tests/app"
// "github.com/eliona-smart-building-assistant/app-integration-tests/assert"
// "github.com/eliona-smart-building-assistant/app-integration-tests/test"
// )

func TestApp(t *testing.T) {
app.StartApp()
test.AppWorks(t)
t.Run("TestSchema", schema)
app.StopApp()
}
// func TestApp(t *testing.T) {
// app.StartApp()
// test.AppWorks(t)
// t.Run("TestSchema", schema)
// app.StopApp()
// }

func schema(t *testing.T) {
t.Parallel()
// func schema(t *testing.T) {
// t.Parallel()

assert.SchemaExists(t, "saml_sp", []string{ /* insert tables */ })
}
// assert.SchemaExists(t, "saml_sp", []string{
// "basic_config",
// "attribute_map",
// "advanced_config",
// "permissions",
// })
// }

0 comments on commit c9f4b5f

Please sign in to comment.