app.spec.js 153 B

1234567
  1. import {App} from '../../src/app';
  2. describe('the app', () => {
  3. it('says hello', () => {
  4. expect(new App().message).toBe('Hello World!');
  5. });
  6. });