-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(test): fix running tests, fix packages/common-* lint errors
refs LIIKUNTA-654
- Loading branch information
1 parent
1f02217
commit 55616b0
Showing
12 changed files
with
82 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
packages/common-tests/browser-tests/header/header.testcafe.utils.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,4 @@ class ClosedEventDetailsPage { | |
} | ||
} | ||
|
||
export default ClosedEventDetailsPage; | ||
export { ClosedEventDetailsPage }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,4 +51,4 @@ class ConsentModal { | |
} | ||
} | ||
|
||
export default ConsentModal; | ||
export { ConsentModal }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,4 +153,4 @@ class EventDetailsPage { | |
} | ||
} | ||
|
||
export default EventDetailsPage; | ||
export { EventDetailsPage }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,4 +100,4 @@ class EventSearchPage { | |
} | ||
} | ||
|
||
export default EventSearchPage; | ||
export { EventSearchPage }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,4 +45,4 @@ class Header { | |
} | ||
} | ||
|
||
export default Header; | ||
export { Header }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export { default as ConsentModal } from './consent-modal'; | ||
export { default as Header } from './header'; | ||
export { default as LandingPage } from './landingPage'; | ||
export { default as EventSearchPage } from './eventSearchPage'; | ||
export { default as EventDetailsPage } from './eventDetailsPage'; | ||
export { default as ClosedEventDetailsPage } from './closedEventDetailsPage'; | ||
export { ConsentModal } from './consent-modal'; | ||
export { Header } from './header'; | ||
export { LandingPage } from './landingPage'; | ||
export { EventSearchPage } from './eventSearchPage'; | ||
export { EventDetailsPage } from './eventDetailsPage'; | ||
export { ClosedEventDetailsPage } from './closedEventDetailsPage'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,4 +36,4 @@ class LandingPage { | |
} | ||
} | ||
|
||
export default LandingPage; | ||
export { LandingPage }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters