Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Barr committed May 24, 2017
0 parents commit 3780740
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Maksim

> This repo exists so that Maksim gets to drink a beer
[See the original tweet](https://www.screencast.com/t/ODysQ08W)
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
exports.drink = function drink() {
return 'beer';
}
7 changes: 7 additions & 0 deletions index.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const lib = require('./index');

describe('drink', () => {
it('returns beer', () => {
expect(lib.drink()).toBe('beer');
});
});
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "maksim",
"version": "1.0.1",
"description": "This repo exists so Maksim gets to drink a beer",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": "",
"license": "ISC"
}

0 comments on commit 3780740

Please sign in to comment.