diff --git a/.gitignore b/.gitignore
index 6862e8a..41dec09 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,3 +21,4 @@ npm-debug.log*
package-lock.json
yarn-debug.log*
yarn-error.log*
+
diff --git a/src/components/EventCard.js b/src/components/EventCard.js
index e7ada6e..fcfa3fa 100644
--- a/src/components/EventCard.js
+++ b/src/components/EventCard.js
@@ -35,6 +35,36 @@ function EventCard(props: EventCardProps) {
);
}
+function renderIconAction(action: string) {
+ switch (action) {
+ case 'COMMENT_PR':
+ return (
+
+ );
+ case 'COMMENT_ISSUE':
+ return (
+
+ );
+ case 'PR':
+ return (
+
+ );
+ case 'ISSUE':
+ return (
+
+ );
+ case 'FORK':
+ return ;
export function renderIconType(event: Event) {
let type: string = event.type;
if (event.type === 'IssuesEvent') {
diff --git a/src/components/Repo.js b/src/components/Repo.js
index d25c012..5862a0e 100644
--- a/src/components/Repo.js
+++ b/src/components/Repo.js
@@ -5,7 +5,7 @@ import {FontAwesome, Octicons, Entypo} from '@expo/vector-icons';
import {DARK_GREY} from '../global/constants/colors';
import languageColor from '../global/constants/languageColor';
-type Repo = {
+export type Repo = {
description: string;
fork: boolean;
forks: number;
@@ -31,13 +31,11 @@ function repoComponent(props: Repo) {
: null;
langColor = langColor ? langColor : '#000000';
let langView = () => {
- return language ? (
+ return (
{language}
- ) : (
-
);
};
return (
diff --git a/src/components/__tests__/Repo.test.js b/src/components/__tests__/Repo.test.js
new file mode 100644
index 0000000..57f9b04
--- /dev/null
+++ b/src/components/__tests__/Repo.test.js
@@ -0,0 +1,58 @@
+// @flow
+import React from 'react';
+import renderer from 'react-test-renderer';
+import repoComponent from '../Repo';
+
+describe('Button', () => {
+ let data = [
+ {
+ description: 'a',
+ fork: true,
+ forks: 1,
+ link: () => true,
+ id: 232343,
+ language: 'JavaScript',
+ name: 'asdfew',
+ stargazersCount: 2,
+ },
+ {
+ description: 'a',
+ fork: true,
+ forks: 1,
+ link: () => true,
+ id: 232343,
+ language: '---',
+ name: 'asdfew',
+ stargazersCount: 2,
+ },
+ {
+ description: 'a',
+ fork: false,
+ forks: 1,
+ link: () => true,
+ id: 232343,
+ language: 'Apex',
+ name: 'asdfew',
+ stargazersCount: 2,
+ },
+ ];
+
+ it('should render Button corectly', () => {
+ let repo = repoComponent(data[0]);
+ let component = renderer.create(repo);
+ let tree = component.toJSON();
+ expect(tree).toMatchSnapshot();
+ });
+ it('should render with wrong language', () => {
+ let repo = repoComponent(data[1]);
+ let component = renderer.create(repo);
+ let tree = component.toJSON();
+ expect(tree).toMatchSnapshot();
+ });
+ it('should render with null langColor', () => {
+ let repo = repoComponent(data[2]);
+ let component = renderer.create(repo);
+ let tree = component.toJSON();
+ expect(tree).toMatchSnapshot();
+ });
+});
diff --git a/src/components/__tests__/__snapshots__/EventCard.test.js.snap b/src/components/__tests__/__snapshots__/EventCard.test.js.snap
index 6ab6681..bbf4f55 100644
--- a/src/components/__tests__/__snapshots__/EventCard.test.js.snap
+++ b/src/components/__tests__/__snapshots__/EventCard.test.js.snap
@@ -566,7 +566,7 @@ exports[`EventCard should render EventCard with comment correctly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
diff --git a/src/components/__tests__/__snapshots__/Repo.test.js.snap b/src/components/__tests__/__snapshots__/Repo.test.js.snap
new file mode 100644
index 0000000..0612afb
--- /dev/null
+++ b/src/components/__tests__/__snapshots__/Repo.test.js.snap
@@ -0,0 +1,484 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`Button should render Button corectly 1`] = `
+
+
+
+
+ asdfew
+
+
+ a
+
+
+
+
+
+ 2
+
+
+
+
+
+ 1
+
+
+
+
+
+ JavaScript
+
+
+
+
+
+
+
+
+
+`;
+
+exports[`Button should render with null langColor 1`] = `
+
+
+
+
+ asdfew
+
+
+ a
+
+
+
+
+
+ 2
+
+
+
+
+
+ 1
+
+
+
+
+
+ Apex
+
+
+
+
+
+
+
+
+
+`;
+
+exports[`Button should render with wrong language 1`] = `
+
+
+
+
+ asdfew
+
+
+ a
+
+
+
+
+
+ 2
+
+
+
+
+
+ 1
+
+
+
+
+
+ ---
+
+
+
+
+
+
+
+
+
+`;
diff --git a/src/features/auth/__tests__/loginReducer.test.js b/src/features/auth/__tests__/loginReducer.test.js
index d183441..f92df82 100644
--- a/src/features/auth/__tests__/loginReducer.test.js
+++ b/src/features/auth/__tests__/loginReducer.test.js
@@ -22,4 +22,18 @@ describe('testing for login reducer', () => {
token: '1231241482hhsabdba',
});
});
+ it('should return message and login false ', () => {
+ const action = {
+ type: 'ACTIONS/AUTH_GITHUB_FAILED',
+ payload: {
+ currentUser: {login: 'aji', email: 'ajilantang@gmail.com'},
+ token: '1231241482hhsabdba',
+ },
+ };
+ const initialState = {isLogin: false};
+ expect(loginReducer(initialState, action)).toEqual({
+ isLogin: false,
+ message: undefined,
+ });
+ });
});
diff --git a/src/features/events/__tests__/__snapshots__/EventsScreen.test.js.snap b/src/features/events/__tests__/__snapshots__/EventsScreen.test.js.snap
index 7d8c684..603f880 100644
--- a/src/features/events/__tests__/__snapshots__/EventsScreen.test.js.snap
+++ b/src/features/events/__tests__/__snapshots__/EventsScreen.test.js.snap
@@ -1,7 +1,863 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
-exports[`EventsScreen should render EventsScreen correctly 1`] = `
-
-
-
-`;
+exports[`container test should render LoginScreen corectly 1`] = `
+
+
+
+
+
+
+
+
+
+
+ zzzcielo
+
+
+ commented on issue
+
+
+ Parallax Header Bug
+
+
+ at
+
+
+ astridtamara/bootcamp
+
+
+
+ 1d
+
+
+
+
+
+
+
+
+
+ [Test Long Comment] The bug is bugging me a lot. Good job fixing it in such short time.[Test Long Comment] The bug is bugging me a lot. Good job fixing it in such short time.[Test Long Comment] The bug is bugging me a lot. Good job fixing it in such short time.[Test Long Comment] The bug is bugging me a lot. Good job fixing it in such short time.
+
+
+
+
+
+
+
+
+
+
+
+ astridtamara
+
+
+ opened issue
+
+
+ kodefox/kfstart
+
+
+ at
+
+
+ astridtamara/bootcamp
+
+
+
+ 2d
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ zzzcielo
+
+
+ commented on pull request
+
+
+ Quick bug fix
+
+
+ at
+
+
+ astridtamara/bootcamp
+
+
+
+ 4d
+
+
+
+
+
+
+
+
+
+ The bug is bugging me a lot. Good job fixing it in such short time.
+
+
+
+
+
+
+
+
+
+
+
+ astridtamara
+
+
+ opened pull request
+
+
+ kodefox/kfstart
+
+
+ at
+
+
+ astridtamara/bootcamp
+
+
+
+ 6d
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ astridtamara
+
+
+ forked
+
+
+ kodefox/kfstart
+
+
+ at
+
+
+ astridtamara/bootcamp
+
+
+
+ 6d
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/features/repository/screens/__tests__/__snapshots__/RepositoryDetailScreen.test.js.snap b/src/features/repository/screens/__tests__/__snapshots__/RepositoryDetailScreen.test.js.snap
index 083796b..2f9ffe3 100644
--- a/src/features/repository/screens/__tests__/__snapshots__/RepositoryDetailScreen.test.js.snap
+++ b/src/features/repository/screens/__tests__/__snapshots__/RepositoryDetailScreen.test.js.snap
@@ -507,7 +507,7 @@ exports[`Repository screee should render Repository corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
@@ -642,7 +642,7 @@ exports[`Repository screee should render Repository corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
@@ -771,7 +771,7 @@ exports[`Repository screee should render Repository corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
@@ -1022,7 +1022,7 @@ exports[`Repository screee should render Repository corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
@@ -1261,7 +1261,7 @@ exports[`Repository screee should render Repository corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
diff --git a/src/features/repository/screens/fileList.js b/src/features/repository/screens/fileList.js
index be7d2a7..660fada 100644
--- a/src/features/repository/screens/fileList.js
+++ b/src/features/repository/screens/fileList.js
@@ -124,7 +124,7 @@ export class fileList extends Component {
path: onClickPath,
name,
},
- key: onClickPath,
+ key: sha,
});
}}
key={sha}
diff --git a/src/features/search/__tests__/__snapshots__/SearchUserScreen.test.js.snap b/src/features/search/__tests__/__snapshots__/SearchUserScreen.test.js.snap
index ca895d6..acd16c5 100644
--- a/src/features/search/__tests__/__snapshots__/SearchUserScreen.test.js.snap
+++ b/src/features/search/__tests__/__snapshots__/SearchUserScreen.test.js.snap
@@ -72,7 +72,7 @@ exports[`container test should render LoginScreen corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
@@ -197,7 +197,7 @@ exports[`container test should render LoginScreen corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
@@ -322,7 +322,7 @@ exports[`container test should render LoginScreen corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
@@ -447,7 +447,7 @@ exports[`container test should render LoginScreen corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
@@ -572,7 +572,7 @@ exports[`container test should render LoginScreen corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
diff --git a/src/features/user/__tests__/__snapshots__/UserScreen.test.js.snap b/src/features/user/__tests__/__snapshots__/UserScreen.test.js.snap
index 203990b..2c74698 100644
--- a/src/features/user/__tests__/__snapshots__/UserScreen.test.js.snap
+++ b/src/features/user/__tests__/__snapshots__/UserScreen.test.js.snap
@@ -577,7 +577,7 @@ exports[`UserScreen should render UserScreen corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
@@ -707,7 +707,7 @@ exports[`UserScreen should render UserScreen corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
]
}
>
diff --git a/src/global/core-ui/Button.js b/src/global/core-ui/Button.js
index cb784ef..c5d92b1 100644
--- a/src/global/core-ui/Button.js
+++ b/src/global/core-ui/Button.js
@@ -14,7 +14,7 @@ type Props = {
onPress: (params?: mixed) => void;
};
const Button = (props: Props) => {
- let {styles = {}, onPress = () => null, title = '', ...otherProps} = props;
+ let {styles = {}, onPress, title, ...otherProps} = props;
let {
backgroundColor = DARK_GREY,
borderRadius = 3,
diff --git a/src/global/core-ui/RowWith3Column.js b/src/global/core-ui/RowWith3Column.js
index 8700f1e..184675b 100644
--- a/src/global/core-ui/RowWith3Column.js
+++ b/src/global/core-ui/RowWith3Column.js
@@ -12,7 +12,7 @@ type Props = {
function RowWith3Column(props: Props) {
let {isTouchable, onPress} = props;
- isTouchable = typeof isTouchable === undefined ? false : isTouchable;
+ isTouchable = isTouchable === undefined ? false : isTouchable;
let rightContent = React.isValidElement(props.right) ? props.right : null;
@@ -22,7 +22,7 @@ function RowWith3Column(props: Props) {
? props.content
: null;
- let containerStyle = props.style ? props.style : [];
+ let containerStyle = props.style !== undefined ? props.style : {};
return (
diff --git a/src/global/core-ui/__tests__/Button.test.js b/src/global/core-ui/__tests__/Button.test.js
new file mode 100644
index 0000000..af1e3bb
--- /dev/null
+++ b/src/global/core-ui/__tests__/Button.test.js
@@ -0,0 +1,16 @@
+// @flow
+import React from 'react';
+import renderer from 'react-test-renderer';
+import Button from '../Button';
+import {View} from 'react-native';
+
+describe('Button', () => {
+ let onPress = () => {};
+ let title = 'Button';
+
+ it('should render Button corectly', () => {
+ let component = renderer.create();
+ let tree = component.toJSON();
+ expect(tree).toMatchSnapshot();
+ });
+});
diff --git a/src/global/core-ui/__tests__/RepoCard.test.js b/src/global/core-ui/__tests__/RepoCard.test.js
index 64116db..e040fba 100644
--- a/src/global/core-ui/__tests__/RepoCard.test.js
+++ b/src/global/core-ui/__tests__/RepoCard.test.js
@@ -37,4 +37,37 @@ describe('RepoCard', () => {
let tree = component.toJSON();
expect(tree).toMatchSnapshot();
});
+
+ it('should render RepoCard for null langColor', () => {
+ let repo = {
+ full_name: 'astridtamara/kfbootcamp',
+ description: '',
+ stargazers_count: 0,
+ forks_count: 0,
+ language: 'Alpine Abuild',
+ fork: true,
+ };
+
+ let component = renderer.create(
+ {}} />,
+ );
+ let tree = component.toJSON();
+ expect(tree).toMatchSnapshot();
+ });
+ it('should render RepoCard for unknown language', () => {
+ let repo = {
+ full_name: 'astridtamara/kfbootcamp',
+ description: '',
+ stargazers_count: 0,
+ forks_count: 0,
+ language: '----',
+ fork: true,
+ };
+
+ let component = renderer.create(
+ {}} />,
+ );
+ let tree = component.toJSON();
+ expect(tree).toMatchSnapshot();
+ });
});
diff --git a/src/global/core-ui/__tests__/RowWith3Column.test.js b/src/global/core-ui/__tests__/RowWith3Column.test.js
index 4e31b21..de0d826 100644
--- a/src/global/core-ui/__tests__/RowWith3Column.test.js
+++ b/src/global/core-ui/__tests__/RowWith3Column.test.js
@@ -1,3 +1,4 @@
+// @flow
import React from 'react';
import renderer from 'react-test-renderer';
import RowWith3Column from '../RowWith3Column';
@@ -6,9 +7,31 @@ import {View} from 'react-native';
describe('RowWith3Collumn', () => {
let edge = ;
let middle = ;
+ let onPress = () => {};
+
it('should render RowWith3Collumn corectly', () => {
let component = renderer.create(
- ,
+ ,
+ );
+ let tree = component.toJSON();
+ expect(tree).toMatchSnapshot();
+ });
+ it('should render Touchable corectly', () => {
+ let component = renderer.create(
+ ,
);
let tree = component.toJSON();
expect(tree).toMatchSnapshot();
diff --git a/src/global/core-ui/__tests__/__snapshots__/Button.test.js.snap b/src/global/core-ui/__tests__/__snapshots__/Button.test.js.snap
new file mode 100644
index 0000000..57f214f
--- /dev/null
+++ b/src/global/core-ui/__tests__/__snapshots__/Button.test.js.snap
@@ -0,0 +1,114 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`Button should render Button corectly 1`] = `
+
+
+
+
+ Button
+
+
+
+
+`;
diff --git a/src/global/core-ui/__tests__/__snapshots__/RepoCard.test.js.snap b/src/global/core-ui/__tests__/__snapshots__/RepoCard.test.js.snap
index 38440e3..1bc3736 100644
--- a/src/global/core-ui/__tests__/__snapshots__/RepoCard.test.js.snap
+++ b/src/global/core-ui/__tests__/__snapshots__/RepoCard.test.js.snap
@@ -158,6 +158,164 @@ exports[`RepoCard should render RepoCard for forked repo corectly 1`] = `
`;
+exports[`RepoCard should render RepoCard for null langColor 1`] = `
+
+
+
+ astridtamara/kfbootcamp
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ Alpine Abuild
+
+
+
+
+
+
+`;
+
exports[`RepoCard should render RepoCard for repo corectly 1`] = `
`;
+
+exports[`RepoCard should render RepoCard for unknown language 1`] = `
+
+
+
+ astridtamara/kfbootcamp
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ ----
+
+
+
+
+
+
+`;
diff --git a/src/global/core-ui/__tests__/__snapshots__/RowWith3Column.test.js.snap b/src/global/core-ui/__tests__/__snapshots__/RowWith3Column.test.js.snap
index 80b3472..804118e 100644
--- a/src/global/core-ui/__tests__/__snapshots__/RowWith3Column.test.js.snap
+++ b/src/global/core-ui/__tests__/__snapshots__/RowWith3Column.test.js.snap
@@ -35,7 +35,99 @@ exports[`RowWith3Collumn should render RowWith3Collumn corectly 1`] = `
"flexDirection": "row",
"justifyContent": "center",
},
- Array [],
+ Object {},
+ ]
+ }
+ >
+
+
+
+
+
+
+
+
+
+`;
+
+exports[`RowWith3Collumn should render Touchable corectly 1`] = `
+
+
diff --git a/src/global/helpers/__tests__/navigationTestHelper.test.js b/src/global/helpers/__tests__/navigationTestHelper.test.js
index 5ea612e..8a82d84 100644
--- a/src/global/helpers/__tests__/navigationTestHelper.test.js
+++ b/src/global/helpers/__tests__/navigationTestHelper.test.js
@@ -3,7 +3,7 @@ import navigation from '../navigationTestHelper';
it('should make mockNavigation with {}', () => {
// Initialize mockstore with empty state
- let data = navigation({});
+ let data = navigation();
expect(data.state.params).toEqual({});
expect(data.getParam('')).toEqual(undefined);
diff --git a/yarn.lock b/yarn.lock
index 2265dca..af9b9ce 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2080,10 +2080,10 @@ bcrypt-pbkdf@^1.0.0:
dependencies:
tweetnacl "^0.14.3"
+
bezier@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/bezier/-/bezier-0.1.0.tgz#fad143502b21e378a3181ffe50baac97ad24909e"
-
big-integer@^1.6.7:
version "1.6.35"
resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.35.tgz#e093c3a50f63fb6bda0b5511c9425f1befcba74d"
@@ -2478,6 +2478,7 @@ cidr-regex@^2.0.8:
dependencies:
ip-regex "^2.1.0"
+
circular-json-es6@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/circular-json-es6/-/circular-json-es6-2.0.2.tgz#e4f4a093e49fb4b6aba1157365746112a78bd344"
@@ -2951,12 +2952,14 @@ deep-diff@0.3.4:
version "0.3.4"
resolved "https://registry.yarnpkg.com/deep-diff/-/deep-diff-0.3.4.tgz#aac5c39952236abe5f037a2349060ba01b00ae48"
+
deep-equal-ident@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/deep-equal-ident/-/deep-equal-ident-1.1.1.tgz#06f4b89e53710cd6cea4a7781c7a956642de8dc9"
dependencies:
lodash.isequal "^3.0"
+
deep-extend@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
@@ -3251,6 +3254,7 @@ enzyme-adapter-utils@^1.6.0:
object.assign "^4.1.0"
prop-types "^15.6.2"
+
enzyme-matchers@^6.0.4:
version "6.0.4"
resolved "https://registry.yarnpkg.com/enzyme-matchers/-/enzyme-matchers-6.0.4.tgz#0a4d8303a064a00289e03d8c992277c291074bbc"
@@ -5218,12 +5222,14 @@ jest-docblock@^22.4.0, jest-docblock@^22.4.3:
dependencies:
detect-newline "^2.1.0"
+
jest-environment-enzyme@^6.0.4:
version "6.0.4"
resolved "https://registry.yarnpkg.com/jest-environment-enzyme/-/jest-environment-enzyme-6.0.4.tgz#1576bec170bb9025e82579bf63fadbf1aeabe944"
dependencies:
jest-environment-jsdom "^22.4.1"
+
jest-environment-jsdom@^22.4.1:
version "22.4.3"
resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.4.3.tgz#d67daa4155e33516aecdd35afd82d4abf0fa8a1e"
@@ -5239,6 +5245,7 @@ jest-environment-node@^22.4.1:
jest-mock "^22.4.3"
jest-util "^22.4.3"
+
jest-enzyme@^6.0.3:
version "6.0.4"
resolved "https://registry.yarnpkg.com/jest-enzyme/-/jest-enzyme-6.0.4.tgz#8dcbab186c41170fdbc2aba5137f74f799e2a578"
@@ -5803,6 +5810,7 @@ lodash._baseindexof@*:
version "3.1.0"
resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c"
+
lodash._baseisequal@^3.0.0:
version "3.0.7"
resolved "https://registry.yarnpkg.com/lodash._baseisequal/-/lodash._baseisequal-3.0.7.tgz#d8025f76339d29342767dcc887ce5cb95a5b51f1"
@@ -5818,7 +5826,10 @@ lodash._baseuniq@~4.6.0:
lodash._createset "~4.0.0"
lodash._root "~3.0.0"
+lodash._bindcallback@*:
+
lodash._bindcallback@*, lodash._bindcallback@^3.0.0:
+
version "3.0.1"
resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e"
@@ -5864,6 +5875,8 @@ lodash.isarray@^3.0.0:
version "3.0.4"
resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
+
+
lodash.isempty@^4.4.0:
version "4.4.0"
resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e"
@@ -5874,7 +5887,6 @@ lodash.isequal@^3.0:
dependencies:
lodash._baseisequal "^3.0.0"
lodash._bindcallback "^3.0.0"
-
lodash.isequal@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
@@ -5883,6 +5895,7 @@ lodash.isplainobject@^4.0.6:
version "4.0.6"
resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
+
lodash.istypedarray@^3.0.0:
version "3.0.6"
resolved "https://registry.yarnpkg.com/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz#c9a477498607501d8e8494d283b87c39281cef62"
@@ -5894,7 +5907,6 @@ lodash.keys@^3.0.0:
lodash._getnative "^3.0.0"
lodash.isarguments "^3.0.0"
lodash.isarray "^3.0.0"
-
lodash.map@^4.6.0:
version "4.6.0"
resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"