BertoCruz / Travel-Tracker

0 stars 0 forks source link

Create Traveler Class #2

Closed BertoCruz closed 2 years ago

BertoCruz commented 2 years ago

Traveler Class

Create mock travelers data testing suite:

Create the Traveler Test file

Create new Traveler

let traveler = new Traveler(travelersData);

Properties:

Methods:

Data Example:

travelers: [
  {
    id: 1,
    name: "Ham Leadbeater",
    travelerType: "relaxer"
  },
  {
    id: 2,
    name: "Rachael Vaughten",
    travelerType: "thrill-seeker"
  },
]