mirror of
https://github.com/danbulant/node-x11
synced 2026-06-24 17:21:47 +00:00
Merge pull request #164 from anko/just-some-maintenance
Mr Janitor coming through
This commit is contained in:
commit
85905efeae
3 changed files with 7 additions and 7 deletions
10
package.json
10
package.json
|
|
@ -40,11 +40,11 @@
|
||||||
"node": "*"
|
"node": "*"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"mocha": "*",
|
"async": "^2.6.0",
|
||||||
"should": "*",
|
"mocha": "^5.0.0",
|
||||||
"sax": "*",
|
"sax": "^1.2.4",
|
||||||
"async": "*",
|
"should": "^13.2.1",
|
||||||
"sinon": "*"
|
"sinon": "^4.2.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "node test-runner.js",
|
"test": "node test-runner.js",
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,7 @@ describe('Atoms and atom names cache', function() {
|
||||||
function(err) {
|
function(err) {
|
||||||
should.not.exist(err);
|
should.not.exist(err);
|
||||||
should.exist(my_name);
|
should.exist(my_name);
|
||||||
self.spy.reset();
|
self.spy.resetHistory();
|
||||||
self.X.InternAtom(true, my_name, function(err, atom) {
|
self.X.InternAtom(true, my_name, function(err, atom) {
|
||||||
should.not.exist(err);
|
should.not.exist(err);
|
||||||
my_atom.should.equal(atom);
|
my_atom.should.equal(atom);
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ describe('KillKlient request', function() {
|
||||||
should.not.exist(err);
|
should.not.exist(err);
|
||||||
display = dpy;
|
display = dpy;
|
||||||
X = display.client;
|
X = display.client;
|
||||||
root = display.screen[0].root;
|
var root = display.screen[0].root;
|
||||||
var eventMask = x11.eventMask.SubstructureNotify;
|
var eventMask = x11.eventMask.SubstructureNotify;
|
||||||
X.ChangeWindowAttributes(root, { eventMask: eventMask });
|
X.ChangeWindowAttributes(root, { eventMask: eventMask });
|
||||||
done();
|
done();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue