Giter Site home page Giter Site logo

Comments (2)

cliff76 avatar cliff76 commented on August 27, 2024

For some reason it started working when I opened a new terminal window. There must have been a foul env var at play. I'm closing this issue. My apologies!

from spectron.

Bharadwaj108 avatar Bharadwaj108 commented on August 27, 2024

Hello,I exactly have the similar issue.I have created a mocha.opts file in my test directory and set a default time out to 10000 ms also I have modified my package.json script section and have inserted these statements
"test": "mocha 'test/**/*.js' --timeout 10000", "test-debug": "mocha --debug 'test/**/*.js' --timeout 10000"
Also I have modified the mocha.js file and changed the default time out from 2000 to 20000 ms but still nothing happens and still get the same issue. Am I missing anything here.Please help.
My Code
`var assert = require('assert');
const mochaTimeOut = 30000;
describe('Test Suite 1', function () {
it('Test 1', function () {
this.timeout(100000);
var Application = require('spectron').Application
var assert = require('assert')
var app = new Application({
path: '/CorumDispense-win32-ia32/CorumDispense.exe'

    })
    app.start().then(function () {
        // Check if the window is visible
        return app.browserWindow.isVisible()
    }).then(function (isVisible) {
        // Verify the window is visible
        assert.equal(isVisible, true)
    }).then(function () {
        // Get the window's title
        return app.client.getTitle()
    }).then(function (title) {
        // Verify the window's title
        assert.equal(title, 'My App')
    }).then(function () {
        // Stop the application
        return app.stop()
    }).catch(function (error) {
        // Log any failures
        console.error('Test failed', error.message)
    })
})

})`
Outupt
Test Name: Test Suite 1 Test 1
Test Outcome: Passed
Result StandardOutput:
mocha.json options file not found. Using default values: { ui: 'tdd', reporter: 'tap', timeout: 2000 }
1..1
ok 1 Test Suite 1 Test 1
tests 1
pass 1
fail 0

from spectron.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.