Skip to content
Snippets Groups Projects
newSpec3.ts 410 B
Newer Older
Glenn Vorhes's avatar
Glenn Vorhes committed
/**
 * Created by glenn on 3/8/2017.
 */


// var d = require('custom-ol')

describe('a cat', function () {

    it('should eat', function () {

        expect(1).toBeGreaterThan(0)
    });

    it('my car', function () {
        console.log('here');
        console.log('here');
       expect(1).toBeGreaterThan(0);
    });

    it('eats that fish', function () {
        expect(true).toBeTruthy();
    })
});