15 lines
343 B
TypeScript
15 lines
343 B
TypeScript
import { RockPaperScissorsPage } from './app.po';
|
|
|
|
describe('rock-paper-scissors App', () => {
|
|
let page: RockPaperScissorsPage;
|
|
|
|
beforeEach(() => {
|
|
page = new RockPaperScissorsPage();
|
|
});
|
|
|
|
it('should display welcome message', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('Welcome to app!');
|
|
});
|
|
});
|