Node.js database testing (is there an equivalent of PHPUnit Database?)

As the title says, is there an equivalent of PHPUnit's database testing module for Node.js?

I want to test my Node.js codes interaction with a mysql db. So provide mock data that is loaded into a db, run tests, verify the db updates against known good data.

Currently I do the same for php code using PHPUnit's DB modules. It dumps db tabes, loads new ones, runs tests, loads a second set of tables and then compares them.

This feels like it should be a simple request, but googling has so far not been successful. Mocha, my current test framework, only mentions setting up / comparing in the 'beforeEach' / 'afterEach' functions, but doesn't seem to provide any tools / comparison code.