@percy/appium-app
Version:
Appium client library for visual testing with Percy
24 lines (22 loc) • 427 B
JavaScript
class Tile {
constructor({
filepath,
statusBarHeight,
navBarHeight,
headerHeight,
footerHeight,
fullscreen,
sha
}) {
this.filepath = filepath;
this.statusBarHeight = statusBarHeight;
this.navBarHeight = navBarHeight;
this.headerHeight = headerHeight;
this.footerHeight = footerHeight;
this.fullscreen = fullscreen;
this.sha = sha;
}
}
module.exports = {
Tile
};