Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
dependencies:
override:
- curl -L https://atom.io/download/deb -o atom-amd64.deb
- sudo dpkg --install atom-amd64.deb || true
- sudo apt-get update
- sudo apt-get -f install
- node --version
- npm --version
- atom --version
- npm prune
- npm install
- apm rebuild

test:
override:
- apm test

machine:
node:
version: 6.3.0
4 changes: 4 additions & 0 deletions spec/debugger-stub.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ export default class DebbugerStub {
return this.emitter.on('breakpoint', callback)
}

onTargetEvent(callback) {
return this.emitter.on('target', callback)
}

/* For tests */
emitSessionEvent(notification) {
this.emitter.emit('session', notification)
Expand Down