UNPKG

imago-sql

Version:

Small library to work with Azure SQL and MySQL via a single interface.

8 lines (6 loc) 198 B
const Sql = require('./mysql'); describe('MySQL', () => { it('should load without syntax errors', () => { expect(() => new Sql('mysql://test:test@test/test')).not.toThrow(); }); });