diff --git a/packages/desktop-gui/src/specs/specs-list.jsx b/packages/desktop-gui/src/specs/specs-list.jsx
index 804c2b531013..03b3f8329364 100644
--- a/packages/desktop-gui/src/specs/specs-list.jsx
+++ b/packages/desktop-gui/src/specs/specs-list.jsx
@@ -151,7 +151,7 @@ class SpecsList extends Component {
-
+
{this._specsList()}
@@ -289,7 +289,7 @@ class SpecsList extends Component {
specsStore.toggleExpandSpecFolder(specFolderPath)
}
- _createNewFile (e) {
+ _createNewFile = (e) => {
e.preventDefault()
e.stopPropagation()
@@ -405,7 +405,7 @@ class SpecsList extends Component {
No files found in
-
+
{this.props.project.integrationFolder}
@@ -425,7 +425,7 @@ class SpecsList extends Component {
We've created some sample tests around key Cypress concepts. Run the first one or create your own test file.
How to write tests
-
+
)
}
@@ -440,7 +440,7 @@ class SpecsList extends Component {
)
}
- _openIntegrationFolder () {
+ _openIntegrationFolder = () => {
ipc.openFinder(this.props.project.integrationFolder)
}
@@ -449,7 +449,7 @@ class SpecsList extends Component {
ipc.externalOpen('https://on.cypress.io/writing-first-test')
}
- _removeFirstTestBanner () {
+ _removeFirstTestBanner = () => {
this.setState({ firstTestBannerDismissed: true })
}
}