Guest User

Untitled

a guest
Oct 9th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. // import { IArea } from "../src/models/company/area";
  2. // import { ICompany } from "../src/models/company/company";
  3. // import { IEmployee } from "../src/models/user/employee";
  4. // import { IPlant } from "../src/models/company/plant";
  5. // import { ISite } from "../src/models/company/site";
  6.  
  7. export const TestArea = {
  8. name: "Area",
  9. };
  10.  
  11. export const TestPlant = {
  12. areas: [TestArea],
  13. name: "Plant",
  14. };
  15.  
  16. export const TestSite = {
  17. name: "Site",
  18. plants: [TestPlant],
  19. };
  20.  
  21. export const TestCompnay = {
  22. name: "Compnay",
  23. sites: [TestSite],
  24. };
  25.  
  26. export const TestEmployee = {
  27. auditAccess: true,
  28. company: TestCompnay,
  29. email: "praveen@codecraft.co.in",
  30. firstName: "praveen",
  31. id: "0001",
  32. isAccessTerminated: false,
  33. isSuperUser: true,
  34. isTranscriber: false,
  35. isVerified: true,
  36. lastName: "castelino",
  37. password: "codecraft123",
  38. roles: ["admin"],
  39. username: "praveencastelino",
  40. };
Add Comment
Please, Sign In to add comment