Skip to content

Commit

Permalink
Fix bug in the test
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Jul 19, 2024
1 parent 9de4c71 commit 26706e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/RokuDeploy.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3018,15 +3018,15 @@ describe('index', () => {
});

describe('getDestPath', () => {
it('handles absolute paths properly', () => {
it.only('handles absolute paths properly', () => {
expect(
rokuDeploy.getDestPath(
s`c:/projects/roku/local3/brighterscript/.tmp/rootDir/source/main.bs`,
s`${tempDir}/rootDir/source/main.bs`,
[{
src: 'c:/projects/roku/local3/brighterscript/.tmp/rootDir/source/main.bs',
src: `${tempDir}/rootDir/source/main.bs`,
dest: 'source/standalone.brs'
}],
'c:/projects/roku/local3/brighterscript/src/lsp/standalone-project-1'
`${tempDir}/src/lsp/standalone-project-1`
)
).to.equal(s`source/standalone.brs`);
});
Expand Down

0 comments on commit 26706e5

Please sign in to comment.