Coder Social home page Coder Social logo

The last time you opened APP_NAME, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? about spectron HOT 11 CLOSED

electron-userland avatar electron-userland commented on May 28, 2024
The last time you opened APP_NAME, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again?

from spectron.

Comments (11)

dougludlow avatar dougludlow commented on May 28, 2024 1

@blainesch yes, I had logic in the before-quit that was running asynchronously and not completing before the application quit.

from spectron.

kevinsawicki avatar kevinsawicki commented on May 28, 2024

The last time you opened Kno2 Desktop, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again?

This means the app crashed. It should only show this the first time the app is launched after a crash. I'm not sure if there is a way to disable this dialog.

from spectron.

dougludlow avatar dougludlow commented on May 28, 2024

@kevinsawicki so the this.app.stop() is crashing the app?

from spectron.

dougludlow avatar dougludlow commented on May 28, 2024

This is basically what I'm doing:

var Application = require('spectron').Application
var chai = require('chai')
var chaiAsPromised = require('chai-as-promised')
var path = require('path')

chai.should()
chai.use(chaiAsPromised)

describe('application launch', function () {
  beforeEach(function () {
    this.app = new Application({
      path: '/Applications/MyApp.app/Contents/MacOS/MyApp'
    })
    return this.app.start()
  })

  beforeEach(function () {
    chaiAsPromised.transferPromiseness = this.app.transferPromiseness
  })

  afterEach(function () {
    if (this.app && this.app.isRunning()) {
      return this.app.stop()
    }
  })

  it('opens a window', function () {
    return this.app.client.waitUntilWindowLoaded()
      .getWindowCount().should.eventually.equal(1)
  })
})

from spectron.

kevinsawicki avatar kevinsawicki commented on May 28, 2024

@dougludlow if you open the Console.app on Mac, do you see these crashes on the left hand side?

from spectron.

dougludlow avatar dougludlow commented on May 28, 2024

I see this:
screen shot 2016-06-29 at 11 23 35 am

from spectron.

kevinsawicki avatar kevinsawicki commented on May 28, 2024

@dougludlow Can you expand User Diagnostic Reports and see if it shows any Kno2 crashes there?

from spectron.

dougludlow avatar dougludlow commented on May 28, 2024

Ok, yup I do. So it is somehow crashing...

from spectron.

dougludlow avatar dougludlow commented on May 28, 2024

Thanks for pointing that out. Must be the way I'm quitting my app from electron. Thanks for your help @kevinsawicki.

from spectron.

kevinsawicki avatar kevinsawicki commented on May 28, 2024

Yeah, it could be an Electron bug so you might want open an issue there depending on what the stack trace looks like.

from spectron.

bayleedev avatar bayleedev commented on May 28, 2024

@dougludlow did you ever figure out the issue? I'm running into a similar issue.

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.