Help getting started
See original GitHub issueI’m trying to use spectron with mocha. In my beforeEach, I have:
this.app = new Application({path: "bin/package/pluginContainer.html"});
return this.appstart();
This times out after 2000ms. What am I doing wrong? Am I passing the wrong path to Application? I didn’t see a description anywhere of what that path is supposed to point to.
Thanks, -Josh
Issue Analytics
- State:
- Created 8 years ago
- Comments:16
Top Results From Across the Web
How to Get Started (On Anything) - Medium
How to Get Started (On Anything) · Break the Project down into Steps · Don't Focus on the Last Hurdles · Remove Distractions...
Read more >Help:Getting started - Wikipedia
If you somehow do get stuck, there are volunteers available to answer your questions; see asking for help for more information.
Read more >Getting Started with Zoom - Zoom Support
Zoom's products and features are here to help you stay in touch and collaborate with others. Choose a product below to get started....
Read more >Get Started – WordPress.com Support
Detailed Guide: Getting Started on WordPress.com. Want a longform guide that will help you create content, add pages, set a homepage, and create...
Read more >Getting started with Support - Zendesk help
Getting started with Support · Introduction: Getting started with Zendesk Support · Lesson 1: From support requests to tickets · Lesson 2: Organizing...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@JoshuaBStevens so you’ll need to specify the path to electron as the path and specify the path to your app as an argument.
something like the following but with the paths adjusted for your setup:
Hope this helps.
HI @kevinsawicki @JoshuaBStevens I have my electron application in another directory and spectron application in some other directory. How can I set path to run electron from spectron application?