Skip to content

Commit

Permalink
code: removed unit test per request
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph committed Jul 25, 2018
1 parent 289bde7 commit a27c3ab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 119 deletions.
1 change: 1 addition & 0 deletions detox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
"src/utils/environment.js",
"src/utils/logger.js",
"src/utils/onTerminate.js",
"src/utils/pipeCommands.js",
"src/utils/sleep.js",
"AAPT.js",
"ADB.js",
Expand Down
25 changes: 0 additions & 25 deletions detox/src/utils/__snapshots__/pipeCommands.test.js.snap

This file was deleted.

11 changes: 3 additions & 8 deletions detox/src/utils/pipeCommands.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ function nixImplementation() {
};
}

// istanbul ignore next
module.exports = {
...(process.platform === 'win32' ? win32Implementation() : nixImplementation()),

_win32: win32Implementation,
_nix: nixImplementation,
};

module.exports = process.platform === 'win32'
? win32Implementation()
: nixImplementation();
86 changes: 0 additions & 86 deletions detox/src/utils/pipeCommands.test.js

This file was deleted.

0 comments on commit a27c3ab

Please sign in to comment.