Skip to content

Commit

Permalink
removing debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
jvigliotta committed Jan 13, 2025
1 parent 5bfddfa commit ccf2e8c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/persistence/test/MCWSNamespaceServiceSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -292,10 +292,8 @@ describe('MCWSNamespaceService', () => {
beforeEach(() => {
spyOn(String.prototype, 'startsWith').and.callFake(function(searchString) {
if (searchString.includes('/') && searchString === filterPath) {
console.log(`path: ${searchString} === ${filterPath}`);
return true;
} else if (searchString.includes(filterTerm)) {
console.log(`term: ${searchString} === ${filterTerm}`);
return true;
}
return false;
Expand Down

0 comments on commit ccf2e8c

Please sign in to comment.