All files Main.js

100% Statements 5/5
100% Branches 0/0
100% Functions 2/2
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20                3x 3x 3x       2x          
/*!
 * Main.js (https://github.com/nathanchapman/babel-starter-kit)
 *
 * Copyright (c) 2016 Nathan Chapman.
 * Licensed under the MIT license.
 */
 
class Main {
  constructor() {
    this.woo = 'Wooo!';
    this.someOtherMethod = val => val;
  }
 
  someMethod() {
    return this.woo;
  }
}
 
export default Main;