WEBVTT

00:00.080 --> 00:01.130
So let's go ahead.

00:01.160 --> 00:08.480
Now, the packages have been imported, so let's go ahead and make a new folder here and let's call

00:08.480 --> 00:11.630
it with the two underscores.

00:12.890 --> 00:17.150
Two underscores and then test and then two underscores again.

00:17.150 --> 00:24.440
And that's sort of a convention, uh, from jest, where you put in the test inside.

00:24.440 --> 00:29.780
So you have all of your tests inside of the test folder here with these underscores.

00:30.560 --> 00:36.710
And then let's go inside of Package.json and set up our test script.

00:36.710 --> 00:48.830
So we say inside the scripts inside test here we write out test chest and then dash dash, watch all.

00:49.430 --> 00:56.690
So that's going to run a test runner, which is going to watch all of the files and update the test

00:56.690 --> 01:02.870
as we are editing our test, which you're going to see how that works in a moment.
