Skip to content

Commit

Permalink
Work out windows bug
Browse files Browse the repository at this point in the history
  • Loading branch information
markwpearce committed Aug 12, 2024
1 parent 80181a4 commit 03a7709
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bsc-plugin/src/lib/rooibos/CodeCoverageProcessor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ describe('RooibosPlugin', () => {
});
});

it('adds code coverage in conditional compile statements', async () => {
it.only('adds code coverage in conditional compile statements', async () => {

Check failure on line 500 in bsc-plugin/src/lib/rooibos/CodeCoverageProcessor.spec.ts

View workflow job for this annotation

GitHub Actions / ci (ubuntu-latest)

it.only not permitted
program.setFile('source/code.bs', `
#const DEBUG = true
sub test()
Expand Down
1 change: 1 addition & 0 deletions bsc-plugin/src/lib/rooibos/CodeCoverageProcessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export class CodeCoverageProcessor {
this.executableLines = new Map<number, Statement>();
this.processedStatements = new Set<Statement>();
this.astEditor = astEditor;
console.log('Processing file:', this.fileId, file.pkgPath);

file.ast.walk(createVisitor({
ForStatement: (ds, parent, owner, key) => {
Expand Down

0 comments on commit 03a7709

Please sign in to comment.