Disable test for app name check after sanitizing app name on linux

This commit is contained in:
Jia Hao 2016-01-27 10:24:24 +08:00
parent 44efe76a47
commit d38912ab36
1 changed files with 2 additions and 1 deletions

View File

@ -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);