Skip to content

Commit

Permalink
Remove debugger statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Roger Urscheler committed Jan 10, 2020
1 parent 1de1119 commit 7294f95
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 1 addition & 5 deletions test/node/conversation-labels.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ describe('Conversation Labels', () => {
});

it('functions: [addLabels, getAllLabels], with event: labelsAdded', async () => {
debugger;
if (!LABEL_SUPPORTED) {
console.log('API not yet supported');
assert(true);
Expand All @@ -35,10 +34,7 @@ describe('Conversation Labels', () => {
client.addLabels([labelValue1, labelValue2]),
helper.expectEvents(client, [{
type: 'labelsAdded',
predicate: evt => {
debugger;
return evt.labels.every(label => label.value === labelValue1 || label.value === labelValue2)
}
predicate: evt => evt.labels.every(label => label.value === labelValue1 || label.value === labelValue2)
}])
]);
const addedLabels = res[0];
Expand Down
2 changes: 0 additions & 2 deletions test/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ function initMocha(reporter) {
Object.defineProperty(window, 'mocha', {
get: function() { return undefined },
set: function(m) {
debugger;
shimMochaInstance(m);
delete window.mocha;
window.mocha = m
Expand All @@ -108,7 +107,6 @@ function initMocha(reporter) {
Object.defineProperty(window, 'Mocha', {
get: function() { return undefined },
set: function(m) {
debugger;
shimMochaProcess(m);
delete window.Mocha;
window.Mocha = m;
Expand Down

0 comments on commit 7294f95

Please sign in to comment.