1 00:00:00,990 --> 00:00:01,823 Instructor: In the last section, 2 00:00:01,823 --> 00:00:03,840 we spoke about the project that we're going to be building 3 00:00:03,840 --> 00:00:06,570 to get a better idea of how testing's going to work. 4 00:00:06,570 --> 00:00:09,090 We'll now continue by installing a couple of dependencies 5 00:00:09,090 --> 00:00:12,150 that we're going to need to get this application running. 6 00:00:12,150 --> 00:00:14,190 So I'm gonna flip on over to my terminal. 7 00:00:14,190 --> 00:00:16,950 Once over here, I'm gonna exit my Jest test runner 8 00:00:16,950 --> 00:00:19,440 by hitting control C. 9 00:00:19,440 --> 00:00:21,930 So remember to exit the Jest runner, 10 00:00:21,930 --> 00:00:24,273 you can hit control C at any time. 11 00:00:25,170 --> 00:00:27,150 And inside of here, I'm going to use NPM 12 00:00:27,150 --> 00:00:29,820 to grab a couple of different dependencies. 13 00:00:29,820 --> 00:00:33,780 So I'm going to get with NPM install --save 14 00:00:33,780 --> 00:00:36,843 redux and react-redux as well. 15 00:00:37,874 --> 00:00:39,720 So I'll install both those modules. 16 00:00:39,720 --> 00:00:41,070 We'll take a quick pause right here, 17 00:00:41,070 --> 00:00:42,210 come back in the next section, 18 00:00:42,210 --> 00:00:44,710 and start wiring this thing up to our application.