forked from rootulp/hackerrank
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rootul Patel
committed
Apr 11, 2020
1 parent
dab0323
commit 130df39
Showing
34 changed files
with
27,601 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
javascript/react-skill-verification-test/react-top-and-newest-articles/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
5 changes: 5 additions & 0 deletions
5
javascript/react-skill-verification-test/react-top-and-newest-articles/.jshintrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"esnext": true | ||
} |
14 changes: 14 additions & 0 deletions
14
javascript/react-skill-verification-test/react-top-and-newest-articles/junit.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<testsuites name="jest tests" tests="5" failures="0" time="0.934"> | ||
<testsuite name="undefined" errors="0" failures="0" skipped="0" timestamp="2020-04-11T02:41:12" time="0.934" tests="5"> | ||
<testcase classname=" Navigation renders correctly" name=" Navigation renders correctly" time="0.081"> | ||
</testcase> | ||
<testcase classname=" Initial articles render correctly" name=" Initial articles render correctly" time="0.012"> | ||
</testcase> | ||
<testcase classname=" Clicking on top renders expected articles" name=" Clicking on top renders expected articles" time="0.014"> | ||
</testcase> | ||
<testcase classname=" Clicking on newest renders expected articles" name=" Clicking on newest renders expected articles" time="0.012"> | ||
</testcase> | ||
<testcase classname=" Sequence of navigation clicks renders expected artices" name=" Sequence of navigation clicks renders expected artices" time="0.027"> | ||
</testcase> | ||
</testsuite> | ||
</testsuites> |
Oops, something went wrong.