{
 "responses": {
  "/auth/login": {
   "body": {
    "csrf": "tok",
    "user": {
     "role": "OWNER"
    }
   }
  },
  "/auth/me": {
   "body": {
    "user": {
     "full_name": "Prakash",
     "role": "OWNER"
    },
    "store": {
     "name": "Shree Krishna Medical"
    },
    "counter": {
     "code": "C1"
    }
   }
  },
  "/setup/status": {
   "body": {
    "ready": false,
    "steps": [
     {
      "key": "store",
      "title": "Shop details",
      "done": true,
      "detail": "licence on file",
      "why": "printed on every bill"
     },
     {
      "key": "counter",
      "title": "At least one counter",
      "done": true,
      "detail": "1 counter",
      "why": "a bill needs a number series"
     },
     {
      "key": "catalogue",
      "title": "Drug catalogue",
      "done": false,
      "detail": "0 items",
      "why": "nothing can be billed without it"
     },
     {
      "key": "worker",
      "title": "Background jobs and backup",
      "done": false,
      "detail": "NO VERIFIED BACKUP",
      "why": "a backup nobody has restored is not a backup"
     }
    ],
    "store": {
     "name": "Shree Krishna Medical"
    }
   }
  },
  "/setup/go-live": {
   "status": 422,
   "body": {
    "message": "Not ready yet: Drug catalogue."
   }
  }
 },
 "steps": [
  {
   "name": "sign in",
   "fill": {
    "lpw": "x"
   },
   "click": "btnLogin",
   "wait": 500
  },
  {
   "name": "the steps load",
   "wait": 250,
   "expect": {
    "steps": "Drug catalogue"
   }
  },
  {
   "name": "the count comes from the server",
   "wait": 250,
   "expect": {
    "introCount": "4 things"
   }
  }
 ]
}