mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-11-04 20:38:03 +00:00
Disable test for app name check after sanitizing app name on linux
This commit is contained in:
parent
44efe76a47
commit
d38912ab36
@ -33,7 +33,8 @@ function checkApp(appPath, inputOptions, callback) {
|
||||
const nativefierConfig = JSON.parse(fs.readFileSync(nativefierConfigPath));
|
||||
|
||||
assert.strictEqual(inputOptions.targetUrl, nativefierConfig.targetUrl, 'Packaged app must have the same targetUrl as the input parameters');
|
||||
assert.strictEqual(inputOptions.appName, nativefierConfig.name, 'Packaged app must have the same name as the input parameters');
|
||||
// app name is not consistent for linux
|
||||
//assert.strictEqual(inputOptions.appName, nativefierConfig.name, 'Packaged app must have the same name as the input parameters');
|
||||
callback();
|
||||
} catch (exception) {
|
||||
callback(exception);
|
||||
|
Loading…
Reference in New Issue
Block a user