Skip to content

Commit

Permalink
Fix stagingFolderPath reference
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Jan 19, 2024
1 parent f8d233b commit 5e657fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DebugConfigurationProvider.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,11 @@ describe('BrightScriptConfigurationProvider', () => {
let config = await processEnvFile(folder, {
envFile: '${workspaceFolder}/.env',
rootDir: '${env:PASSWORD}',
stagingFolderPath: '${env:PASSWORD}'
stagingDir: '${env:PASSWORD}'
});

expect(config.rootDir).to.equal('password');
expect(config.stagingFolderPath).to.equal('password');
expect(config.stagingDir).to.equal('password');

Check failure on line 301 in src/DebugConfigurationProvider.spec.ts

View workflow job for this annotation

GitHub Actions / ci (ubuntu-latest)

Property 'stagingDir' does not exist on type 'BrightScriptLaunchConfiguration'.
});

it('does not replace text outside of the ${} syntax', async () => {
Expand Down

0 comments on commit 5e657fd

Please sign in to comment.