Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. require("dotenv").config();
  2. describe("End to end connector test", () => {
  3. let baseParams = {
  4. username: process.env.USERNAME,
  5. password: process.env.PASSWORD
  6. };
  7. let character;
  8. describe("Should get a list of items", () => {
  9. it("Should get a list of items", () => {
  10. return falafel.testapi.listItems(baseParams).then(output => {
  11. expect(output).toEqual({data: "someData"});
  12. });
  13. });
  14. });
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement