test: add basic unit tests for all navigators

This commit is contained in:
Satyajit Sahoo
2020-06-30 16:14:52 +02:00
parent 2477db47a0
commit 9ba2f84d18
15 changed files with 279 additions and 43 deletions

View File

@@ -1,7 +1,9 @@
{
"extends": "satya164",
"settings": {
"react": { "version": "16" },
"react": {
"version": "16"
},
"import/core-modules": [
"@react-navigation/core",
"@react-navigation/native",
@@ -15,5 +17,11 @@
"@react-navigation/devtools"
]
},
"env": { "browser": true, "node": true }
"env": {
"browser": true,
"node": true
},
"rules": {
"react/no-unused-prop-types": "off"
}
}