Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
554fb11
Preparing repo
Apr 1, 2020
c662321
Issue#1 Created test for api, reducer, action and MessageList component
Dacalez Apr 6, 2020
900b937
Added redux architecture and components with less style
Dacalez Apr 6, 2020
450fc0d
Issue#2 Added some fixes
Dacalez Apr 7, 2020
96f016f
Issue#2 Increased total coverage of app to 86.73%
Dacalez Apr 8, 2020
512c1d9
Issue#2 Changed Reducer
Dacalez Apr 8, 2020
24ec63d
Issue#1 MessagesReducer has been uploaded
Dacalez Apr 8, 2020
a2be126
Issue#1 Added coverage to action test and fixed problems with module …
Dacalez Apr 9, 2020
f2e63f2
Issue #2 Resolved a problem with style-loader module
Dacalez Apr 9, 2020
cd2afcf
Merge pull request #5 from Dacalez/issue/#1_redux_architecture_test
dailymp Apr 10, 2020
c2667dd
Merge pull request #6 from Dacalez/issue/#2_prepare_a_redux_architecture
dailymp Apr 10, 2020
53819cf
Adding fake api data
Apr 14, 2020
95ebef3
Organizing structure
Apr 17, 2020
0d9cac8
Adding base clean folder
Apr 17, 2020
6103992
Adding readme
Apr 17, 2020
b8baeec
Fixing a typo
Apr 17, 2020
4e0b6e2
Modifing base readme
Apr 17, 2020
02ffee2
Base readme modified
Apr 17, 2020
5245bfa
Fixing model bad placed
Apr 17, 2020
1678deb
pruebaLink
Apr 17, 2020
89e5771
Merge branch 'develop' of https://github.com/dailymp/samples-for-reac…
Apr 17, 2020
a028964
Adding more samples
dailymp Apr 17, 2020
78b5475
action_test_link
Apr 17, 2020
0effaa1
Testing-redux-architecture-README
Apr 17, 2020
83802f2
Merge branch 'master' of https://github.com/dailymp/samples-for-react…
Apr 17, 2020
3172317
Renaming and minor fixes
Apr 17, 2020
828dbb9
Adding eslint config and fixes
Apr 17, 2020
5dda5e1
Fixin typo
Apr 17, 2020
f18df62
Configuring and fixin lint errors
Apr 17, 2020
cb33873
Adding circle ci config
Apr 17, 2020
e913062
Defining CI config in nested files
Apr 18, 2020
cefca6b
Changing position to Circle CI config
Apr 18, 2020
bc067db
Adding package-lock
Apr 18, 2020
c0375fd
Modifing routes
Apr 18, 2020
04c99d7
Adding linter fixup
Apr 18, 2020
d0bd12c
Fixing api routes
Apr 18, 2020
f24868a
Create _config.yml
dailymp Apr 19, 2020
3c71bea
Merge branch 'master' of https://github.com/dailymp/samples-for-react…
Apr 19, 2020
be290e7
Testing deployment
Apr 19, 2020
0bbb799
Testing ci-cd enviroment together
Apr 19, 2020
8c80ee2
Adding identity to repo in local git config
dailymp Apr 19, 2020
5ebf22c
Adding again the user name and email as global
dailymp Apr 19, 2020
9bf0680
Adding user to config yml
dailymp Apr 19, 2020
641d825
Testing other workaround to deploy
dailymp Apr 19, 2020
8fc851c
testing continous deployment
DavielSA Apr 19, 2020
2d25c93
Changing keys and repo name
dailymp Apr 19, 2020
a6aee48
Adding ssh keys
dailymp Apr 19, 2020
4bb9707
delete
Apr 21, 2020
a4b030a
Update README.md
dailymp Apr 22, 2020
e570b16
onlick-test-added
Apr 23, 2020
a37ea88
render-div
Apr 23, 2020
24edd5b
readme-updated
Apr 23, 2020
5421c0c
lint
Apr 23, 2020
0c27319
component
Apr 23, 2020
035f074
lint
Apr 23, 2020
72da582
Fixing PR review comments
dailymp Apr 23, 2020
0357ba3
remove-comments
Apr 24, 2020
0ad3a55
lint-ok
Apr 24, 2020
4b8dad7
conflicts
Apr 24, 2020
abe5533
Merge branch 'develop' of https://github.com/dailymp/samples-for-reac…
Apr 24, 2020
81e2178
issue#18-formatting-code
Apr 24, 2020
a90b604
issue#18-comments-solved
Apr 27, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2.1
orbs:
node: circleci/node@1.1.6
jobs:
build-and-test:
executor:
name: node/default
steps:
- checkout
- node/with-cache:
steps:
- run: cd '03 Tests samples' && npm install
- run: cd '03 Tests samples' && npm run lint-fixup
- run: cd '03 Tests samples' && npm run lint
- run: cd '03 Tests samples' && npm test
- add_ssh_keys:
fingerprints:
- "41:58:ce:49:68:48:52:b8:82:f2:2e:57:4b:ba:a8:a4"
- run: git config --global -l
- run: git config --global user.email dailymp@gmail.com
- run: git config --global user.name dailymp
- run: cd '03 Tests samples' && npm run deploy
workflows:
build-and-test:
jobs:
- build-and-test
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
node_modules
package-lock.json
dist/
*.orig
.idea/
src/api/resources/db.json
db.json
coverage/
src/api/apiUtils.ts
*.iml
junit.xml
/reports/
/.awcache
/.vscode
*.awcache
2 changes: 1 addition & 1 deletion 00 Base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ React Testing Library is a library built on DOM Testing Library to provide suppo
This repository covers some guided examples to introduce briefly React Testing Library and React Hooks Testing Library to write tests using Jest. For further examples, you may check some of the resources below
- https://react-hooks-testing-library.com/
- https://testing-library.com/docs/intro
- https://github.com/Lemoncode/react-testing-by-example
- https://github.com/Lemoncode/samples-for-react-testing
Loading