Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DavertMik committed Jul 2, 2023
1 parent 160d584 commit ed180ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/html_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ describe('HTML module', () => {
html = fs.readFileSync(path.join(__dirname, '../data/testomat.html'), 'utf8');
// console.log(html);
const result = removeNonInteractiveElements(html, opts);

console.log(minifyHtml(result));
result.should.include('<svg class="md-icon md-icon-check-bold');
// console.log(minifyHtml(result));
});
});

Expand Down
4 changes: 4 additions & 0 deletions test/unit/worker_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ describe('Workers', () => {
global.codecept_dir = path.join(__dirname, '/../data/sandbox');
});

beforeEach(function () {
this.timeout(10000);
});

it('should run simple worker', (done) => {
const workerConfig = {
by: 'test',
Expand Down

0 comments on commit ed180ba

Please sign in to comment.