A happy beginning 🚪🔒

This commit is contained in:
Dana Woodman
2018-03-03 13:28:55 -08:00
commit 38c0bae242
21 changed files with 6001 additions and 0 deletions

17
__mocks__/tessel.js Normal file
View File

@@ -0,0 +1,17 @@
function LED() {
return {
off: jest.fn(),
on: jest.fn(),
}
}
const tessel = {
led: {
0: LED(), // red
1: LED(), // amber
2: LED(), // green
3: LED(), // blue
},
}
module.exports = tessel