Skip to content

Commit

Permalink
Test settings path update in readme, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
numtel committed Feb 17, 2015
1 parent cd949a4 commit 87372f0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

## 0.1.1

* [mysql-live-select updated to 0.0.14](https://github.com/numtel/meteor-mysql/commit/cd949a4ee551b5ce3b0affb7ef5f40c0057c0bb4), enables callback on `LiveMysql` constructor to detect connection errors.

## 0.1.0

* [Now direct wrapper on mysql-live-select package](https://github.com/numtel/meteor-mysql/commit/2b3762195a89e37b7c1e31a9c732ba20b2cfb90d), legacy trigger-based update system removed

12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,13 @@ Name | Listener Arguments | Description

## Tests / Benchmarks

A MySQL server is required to run the test suite.
A MySQL server configured to output the binary log in row mode is required to run the test suite.

The MySQL connection settings must be configured in `test/settings/local.json`.

The database specified should be an empty database with no tables because the tests will create and delete tables as needed.

If you set the `recreateDb` value to true, the test suite will automatically create the database, allowing you to specify a database name that does not yet exist.

```bash
# Install Meteor
Expand All @@ -81,10 +87,10 @@ $ cd meteor-mysql

# Configure database settings in your favorite editor
# (an empty database is suggested)
$ ed test/settings.local.json
$ ed test/settings/local.json

# Run test/benchmark server
$ meteor test-packages --settings test/settings.local.json ./
$ meteor test-packages --settings test/settings/local.json ./

```

Expand Down

0 comments on commit 87372f0

Please sign in to comment.