fix tests

pull/1707/head
Audric Ackermann 4 years ago
parent 9204d2f5dd
commit 9213f20930
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -11,7 +11,6 @@ exports.createTemplate = (options, messages) => {
openReleaseNotes, openReleaseNotes,
openSupportPage, openSupportPage,
platform, platform,
setupWithImport,
showAbout, showAbout,
showDebugLog, showDebugLog,
} = options; } = options;
@ -156,10 +155,6 @@ exports.createTemplate = (options, messages) => {
fileMenu.submenu.unshift({ fileMenu.submenu.unshift({
type: 'separator', type: 'separator',
}); });
fileMenu.submenu.unshift({
label: messages.menuSetupWithImport,
click: setupWithImport,
});
} }
if (platform === 'darwin') { if (platform === 'darwin') {
@ -170,7 +165,7 @@ exports.createTemplate = (options, messages) => {
}; };
function updateForMac(template, messages, options) { function updateForMac(template, messages, options) {
const { includeSetup, setupWithImport, showAbout, showWindow } = options; const { includeSetup, showAbout, showWindow } = options;
// Remove About item and separator from Help menu, since it's on the first menu // Remove About item and separator from Help menu, since it's on the first menu
template[4].submenu.pop(); template[4].submenu.pop();
@ -184,12 +179,6 @@ function updateForMac(template, messages, options) {
// the file menu first, though it ends up to the right of the Signal Desktop menu. // the file menu first, though it ends up to the right of the Signal Desktop menu.
const fileMenu = { const fileMenu = {
label: messages.mainMenuFile, label: messages.mainMenuFile,
submenu: [
{
label: messages.menuSetupWithImport,
click: setupWithImport,
},
],
}; };
template.unshift(fileMenu); template.unshift(fileMenu);

@ -34,13 +34,7 @@
] ]
}, },
{ {
"label": "&File", "label": "&File"
"submenu": [
{
"label": "Set Up with Import",
"click": null
}
]
}, },
{ {
"label": "&Edit", "label": "&Edit",
@ -79,22 +73,6 @@
{ {
"label": "Select all", "label": "Select all",
"role": "selectall" "role": "selectall"
},
{
"type": "separator"
},
{
"label": "Speech",
"submenu": [
{
"label": "Start speaking",
"role": "startspeaking"
},
{
"label": "Stop speaking",
"role": "stopspeaking"
}
]
} }
] ]
}, },

@ -70,22 +70,6 @@
{ {
"label": "Select all", "label": "Select all",
"role": "selectall" "role": "selectall"
},
{
"type": "separator"
},
{
"label": "Speech",
"submenu": [
{
"label": "Start speaking",
"role": "startspeaking"
},
{
"label": "Stop speaking",
"role": "stopspeaking"
}
]
} }
] ]
}, },

@ -2,10 +2,6 @@
{ {
"label": "&File", "label": "&File",
"submenu": [ "submenu": [
{
"label": "Set Up with Import",
"click": null
},
{ {
"type": "separator" "type": "separator"
}, },

Loading…
Cancel
Save