# npm test #

Notice the package.json that was generated for you by `npm init`
includes some strange text:

```json
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
```

Run `npm test` to see what this does.

## Task

Write a test script for your new module that uses tape.

