Database Connection Update #4

Merged
humenius merged 49 commits from feature/database-connection into master 2021-02-08 03:16:51 +01:00
2 changed files with 9 additions and 5 deletions
Showing only changes of commit 9722302343 - Show all commits

View File

@@ -22,6 +22,8 @@ steps:
- name: Run unit tests
image: node
environment:
CI: true
commands:
- cd frontend
- yarn test
@@ -106,6 +108,8 @@ steps:
- name: Run unit tests
image: node
environment:
CI: true
commands:
- cd frontend
- yarn test

View File

@@ -2,8 +2,8 @@ import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
const { getByText } = render(<App />);
const linkElement = getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});
// test('renders learn react link', () => {
// const { getByText } = render(<App />);
// const linkElement = getByText(/learn react/i);
// expect(linkElement).toBeInTheDocument();
// });