mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
bafdf8d9f2
Update all tests for `no-var` and `prefer-arrow-callback` (using `--fix`)
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
const test = require('tap').test;
|
|
const Mouse = require('../../src/io/mouse');
|
|
const Runtime = require('../../src/engine/runtime');
|
|
|
|
test('spec', t => {
|
|
const rt = new Runtime();
|
|
const m = new Mouse(rt);
|
|
|
|
t.type(m, 'object');
|
|
t.type(m.postData, 'function');
|
|
t.type(m.getX, 'function');
|
|
t.type(m.getY, 'function');
|
|
t.type(m.getIsDown, 'function');
|
|
t.end();
|
|
});
|
|
|
|
test('mouseUp', t => {
|
|
const rt = new Runtime();
|
|
const m = new Mouse(rt);
|
|
|
|
m.postData({
|
|
x: 1,
|
|
y: 10,
|
|
isDown: false,
|
|
canvasWidth: 480,
|
|
canvasHeight: 360
|
|
});
|
|
t.strictEquals(m.getX(), -239);
|
|
t.strictEquals(m.getY(), 170);
|
|
t.strictEquals(m.getIsDown(), false);
|
|
t.end();
|
|
});
|
|
|
|
test('mouseDown', t => {
|
|
const rt = new Runtime();
|
|
const m = new Mouse(rt);
|
|
|
|
m.postData({
|
|
x: 10,
|
|
y: 100,
|
|
isDown: true,
|
|
canvasWidth: 480,
|
|
canvasHeight: 360
|
|
});
|
|
t.strictEquals(m.getX(), -230);
|
|
t.strictEquals(m.getY(), 80);
|
|
t.strictEquals(m.getIsDown(), true);
|
|
t.end();
|
|
});
|