electron-97: removed console log statements in the spectron tests

This commit is contained in:
Vishwas Shashidhar 2017-08-24 16:31:09 +05:30
parent 5f557247a7
commit d566e38b6a
9 changed files with 0 additions and 13 deletions

View File

@ -21,7 +21,6 @@ describe('Tests for Bring to front', () => {
app.stop().then(() => {
done();
}).catch((err) => {
console.log(err);
done();
});
}

View File

@ -20,7 +20,6 @@ describe('Tests for clipboard', () => {
app.stop().then(() => {
done();
}).catch((err) => {
console.log(err);
done();
});
}

View File

@ -22,7 +22,6 @@ describe('Tests for Close', () => {
app.stop().then(() => {
done();
}).catch((err) => {
console.log(err);
done();
});
} else {

View File

@ -19,7 +19,6 @@ describe('Tests for Full screen', () => {
return app.startApplication().then((startedApp) => {
app = startedApp;
getConfigPath().then((config) => {
console.log(config);
configPath = config;
done();
}).catch((err) => {
@ -54,7 +53,6 @@ describe('Tests for Full screen', () => {
app.stop().then(() => {
done();
}).catch((err) => {
console.log(err);
done();
});
} else {
@ -99,7 +97,6 @@ describe('Tests for Full screen', () => {
app.browserWindow.focus();
return app.browserWindow.setAlwaysOnTop(true).then(() => {
return app.browserWindow.isAlwaysOnTop().then((isOnTop) => {
console.log(isOnTop);
expect(isOnTop).toBeTruthy();
});
});

View File

@ -19,7 +19,6 @@ describe('Tests for Minimize on Close', () => {
return app.startApplication().then((startedApp) => {
app = startedApp;
getConfigPath().then((config) => {
console.log(config);
configPath = config;
done();
}).catch((err) => {
@ -54,7 +53,6 @@ describe('Tests for Minimize on Close', () => {
app.stop().then(() => {
done();
}).catch((err) => {
console.log(err);
done();
});
} else {
@ -99,7 +97,6 @@ describe('Tests for Minimize on Close', () => {
app.browserWindow.focus();
return app.browserWindow.setAlwaysOnTop(true).then(() => {
return app.browserWindow.isAlwaysOnTop().then((isOnTop) => {
console.log(isOnTop);
expect(isOnTop).toBeTruthy();
});
});

View File

@ -23,7 +23,6 @@ describe('Tests for Notification position', () => {
app.stop().then(() => {
done();
}).catch((err) => {
console.log(err);
done();
});
}

View File

@ -24,7 +24,6 @@ class App {
return this.app.start().then((app) => {
return app;
}).catch((err) => {
console.log(err);
});
}

View File

@ -26,7 +26,6 @@ describe('Tests for spellChecker', () => {
app.stop().then(() => {
done();
}).catch((err) => {
console.log(err);
done();
});
}

View File

@ -53,7 +53,6 @@ describe('Tests for Zoom in and Zoom out', () => {
app.stop().then(() => {
done();
}).catch((err) => {
console.log(err);
done();
});
} else {