All files / app/assets/javascripts/ide commit_icon.js

100% Statements 5/5
100% Branches 6/6
100% Functions 1/1
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13      82x 7x   75x 9x     66x    
import { commitItemIconMap } from './constants';
 
export default (file) => {
  if (file.deleted) {
    return commitItemIconMap.deleted;
  }
  if (file.tempFile && !file.prevPath) {
    return commitItemIconMap.addition;
  }
 
  return commitItemIconMap.modified;
};