Skip to content

Commit

Permalink
make sure we use string format, just in case
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ocean committed Jul 23, 2024
1 parent df6ea87 commit f13c1c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/integration/logs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('LogDatabase CRUD', () => {
before(async () => {
previousConfiguration = await setupEnvironment(
null,
buildEnvOverrideConfig([ENVIRONMENT_VARIABLES.LOG_DB], [true])
buildEnvOverrideConfig([ENVIRONMENT_VARIABLES.LOG_DB], ['true'])
)
const dbConfig = {
url: 'http://localhost:8108/?apiKey=xyz'
Expand Down Expand Up @@ -167,7 +167,7 @@ describe('LogDatabase retrieveMultipleLogs with specific parameters', () => {
before(async () => {
previousConfiguration = await setupEnvironment(
null,
buildEnvOverrideConfig([ENVIRONMENT_VARIABLES.LOG_DB], [true])
buildEnvOverrideConfig([ENVIRONMENT_VARIABLES.LOG_DB], ['true'])
)

const dbConfig = {
Expand Down Expand Up @@ -341,7 +341,7 @@ describe('LogDatabase deleteOldLogs', () => {
before(async () => {
previousConfiguration = await setupEnvironment(
null,
buildEnvOverrideConfig([ENVIRONMENT_VARIABLES.LOG_DB], [true])
buildEnvOverrideConfig([ENVIRONMENT_VARIABLES.LOG_DB], ['true'])
)
const dbConfig = {
url: 'http://localhost:8108/?apiKey=xyz'
Expand Down Expand Up @@ -403,7 +403,7 @@ describe('LogDatabase retrieveMultipleLogs with pagination', () => {
before(async () => {
previousConfiguration = await setupEnvironment(
null,
buildEnvOverrideConfig([ENVIRONMENT_VARIABLES.LOG_DB], [true])
buildEnvOverrideConfig([ENVIRONMENT_VARIABLES.LOG_DB], ['true'])
)
const dbConfig = {
url: 'http://localhost:8108/?apiKey=xyz'
Expand Down

0 comments on commit f13c1c1

Please sign in to comment.