GITLAB

Nattapon Wongpaet / Hospital

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • hospital
  • unitTest
  • test.js
  • 49559b6c   merge Browse Code ยป
    sumatek
    2018-10-16 14:18:45 +0700  
test.js 234 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
describe('test app', function() {
      
          
      
    it('cal one down (calDown)' , function(done) {

     
      if ('1'=='1') {
        done();
      } else {
        done(new Error("fail"));
      }
  
    });

    

  });