Adding a stubbed out test

Removing old demo file and spec
This commit is contained in:
Jeff Avallone 2014-11-25 20:05:29 -05:00
parent abd8a52f6b
commit c6f2271867
3 changed files with 7 additions and 20 deletions

View File

@ -1,13 +0,0 @@
import * as demo from '../src/js/demo';
describe('Demo', () => {
it('returns 1 from test1', () => {
expect(demo.test1()).toEqual(1);
});
it('returns "two" from test2', () => {
expect(demo.test2()).toEqual('two');
});
});

View File

@ -0,0 +1,7 @@
import parser from 'src/js/parser/javascript.peg';
describe('parser/javascript.peg', function() {
pending();
});

View File

@ -1,7 +0,0 @@
export function test1() {
return 1;
}
export function test2() {
return 'two';
}