Skip to content

Commit c54b185

Browse files
committed
fix: apply PR changes and correct typos in SETUP
1 parent a3b08d4 commit c54b185

File tree

10 files changed

+350
-117
lines changed

10 files changed

+350
-117
lines changed

.prettierrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
"tabWidth": 2,
44
"semi": true,
55
"singleQuote": true,
6-
"jsxSingleQuote": false
6+
"jsxSingleQuote": false,
7+
"importOrder": ["^react", "^@?graasp*", "^@?mui*", "^@.*", "^[./]"],
8+
"importOrderSeparation": true,
9+
"importOrderSortSpecifiers": true
710
}

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Code Capsule App
22

3-
This repository hosts the code for a Graasp app that lets users make code reviews,
4-
edit and annotate code, alone or in collaboration.
3+
This repository hosts the code for a Graasp app that lets users write code reviews, edit and annotate code, alone or in collaboration.
54

65
## Installation
76

cypress/integration/home.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {
2-
buildDataCy,
32
LEARN_REACT_LINK_CYPRESS,
3+
buildDataCy,
44
} from '../../src/config/selectors';
55

66
describe('Renders Home', () => {

cypress/support/commands.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import '@testing-library/cypress/add-commands';
2+
23
// ***********************************************
34
// This example commands.js shows you how to
45
// create various custom commands and overwrite

cypress/support/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
// You can read more here:
1313
// https://on.cypress.io/configuration
1414
// ***********************************************************
15-
1615
// Import commands.js using ES2015 syntax:
17-
import './commands.js';
1816
import '@cypress/code-coverage/support';
1917

18+
import './commands.js';
19+
2020
// Alternatively you can use CommonJS syntax:
2121
// require('./commands')

0 commit comments

Comments
 (0)