Skip to content

Commit

Permalink
fix: fixed imports after changing the exports + disabled spamming of …
Browse files Browse the repository at this point in the history
…CI variable to console
  • Loading branch information
murolem committed Apr 24, 2023
1 parent 8f0caa2 commit 2e7b6ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</head>
<body>
<script defer type='module'>
import { Logger } from './src/index.ts';
import Logger from './src/index.ts';

window.Logger = Logger;
// console.log(Logger);
Expand Down
2 changes: 1 addition & 1 deletion tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ async function saveV8Coverage(page: Page): Promise<void> {
}

test.beforeAll(() => {
console.log('CI variable: ' + process.env.CI);
// console.log('CI variable: ' + process.env.CI);
});

let { gatherCoverageForPage, saveCoverage } = getCoverageGatherer();
Expand Down

0 comments on commit 2e7b6ed

Please sign in to comment.