mirror of
https://github.com/Mintplex-Labs/nut.js.git
synced 2026-07-01 20:04:00 -04:00
49f146494e
* (#559) Adjust getRegion implementation It’ll now cut off window regions at the borders of the main screen, avoiding errors due to out of bounds regions * (#559) Moved window e2e test into dedicated e2e subpackage
14 lines
181 B
JavaScript
14 lines
181 B
JavaScript
const POS_X = 50;
|
|
const POS_Y = 100;
|
|
const WIDTH = 400;
|
|
const HEIGHT = 300;
|
|
const TITLE = "libnut window test";
|
|
|
|
module.exports = {
|
|
POS_X,
|
|
POS_Y,
|
|
WIDTH,
|
|
HEIGHT,
|
|
TITLE,
|
|
};
|