Skip to content

Commit

Permalink
[email protected] - use require statement. (#1722)
Browse files Browse the repository at this point in the history
* [email protected] - use require statement.

* [email protected] - change package bump type.
  • Loading branch information
kevinrodrigues authored Mar 8, 2022
1 parent a9bf7a7 commit 469d1e2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions packages/services/f-wdio-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

v0.8.1
------------------------------
*March 08, 2022*

### Fixed
- Use `require` statement as import.


v0.8.0
------------------------------
*March 07, 2022*
Expand Down
2 changes: 1 addition & 1 deletion packages/services/f-wdio-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@justeat/f-wdio-utils",
"description": "Fozzie Wdio Utils - webdriverIO page object",
"version": "0.8.0",
"version": "0.8.1",
"files": [
"src/"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/services/f-wdio-utils/src/page.object.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { source } from 'axe-core';
const { source } = require('axe-core');
const { buildUrl } = require('./storybook-extensions');

class Page {
Expand Down

0 comments on commit 469d1e2

Please sign in to comment.