Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
a-jaxell committed Oct 26, 2024
1 parent 2e05c16 commit 98d2d8b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions webapp/TESTING.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Testing

This contains information on how to run different tests and add new tests for Lyra.
This contains information on how to run different tests and add new tests for Lyra.

We are using Playwright to test integration of features.
We are using Playwright to test integration of features.
Read the documentation at [playwright.dev/docs](https://playwright.dev/docs)

Jest is used to write both integration and unit tests.
Expand All @@ -24,4 +24,4 @@ Unit tests are written in Jest and located paralell to the unit they are written

To run unit tests:

`npm run test`
`npm run test`
2 changes: 1 addition & 1 deletion webapp/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ module.exports = {
moduleNameMapper: {
'@/(.*)': '<rootDir>/src/$1',
},
modulePathIgnorePatterns: ['<rootDir>/integrationTesting']
modulePathIgnorePatterns: ['<rootDir>/integrationTesting'],
};
4 changes: 1 addition & 3 deletions webapp/playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { defineConfig } from '@playwright/test';

export default defineConfig({
reporter: [
['html', {open: 'never'}]
],
reporter: [['html', { open: 'never' }]],
testDir: './integrationTesting/tests',
});

0 comments on commit 98d2d8b

Please sign in to comment.