Skip to content

Commit

Permalink
fix(case): adjust folder name case
Browse files Browse the repository at this point in the history
  • Loading branch information
jlenon7 committed Aug 9, 2023
1 parent 711f224 commit e9e229e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/ignite/IgniteTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default class IgniteTest extends BaseTest {
@Test()
public async shouldBeAbleToFireTheIgniteClassLoadingAllTheRestOfTheApplication({ assert }: Context) {
Config.set('rc.environments', ['other'])
Config.set('rc.directories', { config: 'tests/Stubs/igniteConfig' })
Config.set('rc.directories', { config: 'tests/stubs/igniteConfig' })

const ignite = await new Ignite().load(Config.get('meta'), {
envPath: Path.stubs('.env'),
Expand Down Expand Up @@ -133,7 +133,7 @@ export default class IgniteTest extends BaseTest {

process.env.OVERRIDE_ENV = 'true'
Config.set('rc.environments', ['other'])
Config.set('rc.directories', { config: 'tests/Stubs/igniteConfig' })
Config.set('rc.directories', { config: 'tests/stubs/igniteConfig' })

const ignite = await new Ignite().load(Config.get('meta'), {
environments: ['console'],
Expand All @@ -154,7 +154,7 @@ export default class IgniteTest extends BaseTest {

@Test()
public async shouldBeAbleToHandleSyntaxErrorExceptionsOfConfigsUsingTheDefaultIgniteHandler({ assert }: Context) {
Config.set('rc.directories', { config: 'tests/Stubs/syntaxErrorConfig' })
Config.set('rc.directories', { config: 'tests/stubs/syntaxErrorConfig' })

const ignite = await new Ignite().load(Config.get('meta'), {
environments: ['console'],
Expand Down

0 comments on commit e9e229e

Please sign in to comment.