Browse Source

Update package versions

master
smokeball-tests 4 years ago
parent
commit
faca22324c
4 changed files with 1064 additions and 903 deletions
  1. +1
    -1
      README.md
  2. +1061
    -900
      package-lock.json
  3. +1
    -1
      package.json
  4. +1
    -1
      src/get-arnie-quotes.test.js

+ 1
- 1
README.md View File

@ -21,7 +21,7 @@ The `getArnieQuotes()` function accepts an array of strings, with each string co
The unit tests in `./src/get-arnie-quotes.test.js` will provide pre-defined URLs to the function and test your function's implementation. To run the unit tests, execute `npm test` in the terminal.
The goal is to write an implementation of `getArnieQuotes` that passes all unit tests.
The goal is to write an implementation of `getArnieQuotes()` that passes all unit tests.
To pass the unit tests, `getArnieQuotes()` must perform the following each URL passed in;


+ 1061
- 900
package-lock.json
File diff suppressed because it is too large
View File


+ 1
- 1
package.json View File

@ -9,6 +9,6 @@
"test": "jest"
},
"dependencies": {
"jest": "25.1.0"
"jest": "26.1.0"
}
}

+ 1
- 1
src/get-arnie-quotes.test.js View File

@ -9,7 +9,7 @@ const urls = [
test('expect no throws', () => {
expect.assertions(1);
expect(async () => results = await getArnieQuotes(urls)).not.toThrow();
expect(async () => await getArnieQuotes(urls)).not.toThrow();
});
test('responses to be correct', async () => {


Loading…
Cancel
Save