Fix broken test on master for /frontend

This commit is contained in:
Nicola Corti
2020-02-04 10:33:36 +01:00
parent 6a457bc989
commit b22636bcd6
+3 -2
View File
@@ -5,7 +5,8 @@ import App from './App';
describe('App', () => {
it('renders learn react link', () => {
const rendered = render(<App />);
rendered.getByText('This is Backstage with plugin hello-world');
rendered.getByText('Hello!');
rendered.getByText('This is Backstage!');
rendered.getByText('Backstage is an open platform for building developer portals');
rendered.getByText('…with plugin hello-world:');
});
});