Skip to content

Commit 2f8460e

Browse files
authored
Merge pull request #13 from leapfrogtechnology/travis
Configure Travis CI for running tests
2 parents fd87a5a + 4d46340 commit 2f8460e

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: node_js
2+
3+
node_js:
4+
- node
5+
- 10
6+
- 8
7+
8+
before_script:
9+
- yarn build
10+
11+
script:
12+
- yarn test

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,6 @@ Setup and Teardown steps aren't always run within a single transaction. **You ne
164164
await db.transaction(async trx => {
165165
// Rollback and create all db objects using config.
166166
await synchronize(config, trx, { force: false });
167-
168-
// Perform other db operations
169-
// ...
170167
});
171168
```
172169

0 commit comments

Comments
 (0)