Commit fa9752f0 authored by Björn Bartels's avatar Björn Bartels 👩🏻
Browse files

PATLAB-7 add adapter tests

parent 5b38400b
Loading
Loading
Loading
Loading
+187 −185

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
    "dev": "gulp",
    "build": "gulp",
    "demo": "gulp --demo",
    "reinstall": "rm -rf node_modules bower_components package-lock.json ; npm install; bower link siteapp; npm test; npm run demo"
    "reinstall": "rm -rf node_modules bower_components package-lock.json ; npm install; bower link siteapp; npm test;"
  },
  "author": "Björn Bartels <coding@bjoernbartels.earth>",
  "license": "Apache-2.0",
+0 −10
Original line number Diff line number Diff line
<html>
  <body>
    eggs
    bacon
    toast
    ham
    cheese
    chips
  </body>
</html>
+0 −18
Original line number Diff line number Diff line
{
    "patterns": {},
    "categories": [],
    "breakfast": {
        "items": [
            "eggs",
            "bacon",
            "toast"
        ]
    },
    "lunch": {
        "items": [
            "ham",
            "cheese",
            "chips"
        ]
    }
}
+0 −7
Original line number Diff line number Diff line
<html>
  <body>
    eggs
    bacon
    toast
  </body>
</html>
Loading