* working - translation of any wrapped object * clang format * Adds QVariant and Qbject property. Also adds QPixmap fromQVariant * fixes breaking test cases * Adds build to prepush hook aswell
6 lines
168 B
JavaScript
6 lines
168 B
JavaScript
const { QApplication } = require('../../dist');
|
|
module.exports = async () => {
|
|
global.qApp = QApplication.instance();
|
|
qApp.setQuitOnLastWindowClosed(false);
|
|
};
|