mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-07-22 10:22:12 -05:00
ESLint has a whole new config format, so I figure it's a good time to make the config system saner. - First, we no longer have separate eslint-no-types configs. Lint performance shouldn't be enough of a problem to justify the relevant maintenance complexity. - Second, our base config should work out-of-the-box now. `npx eslint` will work as expected, without any CLI flags. You should still use `npm run lint` which adds the `--cached` flag for performance. - Third, whatever updates I did fixed style linting, which apparently has been bugged for quite some time, considering all the obvious mixed-tabs-and-spaces issues I found in the upgrade. Also here are some changes to our style rules. In particular: - Curly brackets (for objects etc) now have spaces inside them. Sorry for the huge change. ESLint doesn't support our old style, and most projects use Prettier style, so we might as well match them in this way. See https://github.com/eslint-stylistic/eslint-stylistic/issues/415 - String + number concatenation is no longer allowed. We now consistently use template strings for this.
37 lines
1.4 KiB
JavaScript
37 lines
1.4 KiB
JavaScript
"use strict";
|
|
const { SQL } = require('../../dist/lib/sql');
|
|
const assert = require('../assert').strict;
|
|
const common = require('../common');
|
|
|
|
const database = SQL(module, { file: `:memory:`, processes: 1 });
|
|
|
|
(common.hasModule('better-sqlite3') ? describe : describe.skip)(`SQLite worker wrapper`, () => {
|
|
// prepare statements and set up table
|
|
let select, insert;
|
|
before(async () => {
|
|
await database.exec(`CREATE TABLE IF NOT EXISTS test (col TEXT, col2 TEXT)`);
|
|
select = await database.prepare(`SELECT * FROM test`);
|
|
insert = await database.prepare(`INSERT INTO test (col, col2) VALUES (?, ?)`);
|
|
});
|
|
it(`should require you to prepare a statement before running`, async () => {
|
|
database.get('SELECT col FROM test').then(() => {
|
|
assert(false, 'expected error');
|
|
}).catch(() => {
|
|
assert(true, 'received error');
|
|
});
|
|
});
|
|
it(`should support both statement strings and corresponding statement classes`, async () => {
|
|
await database.run(`INSERT INTO test (col, col2) VALUES (?, ?)`, ['a', 'b']);
|
|
await database.run(insert, ['a', 'b']);
|
|
});
|
|
it(`should support both inline and object params`, async () => {
|
|
const num = await database.prepare(`INSERT INTO test (col, col2) VALUES($col, $col2)`);
|
|
await database.run(insert, ['a', 'b']);
|
|
await database.run(num, { col: 'a', col2: 'b' });
|
|
});
|
|
it(`should retrieve one line from Database.get`, async () => {
|
|
const result = await database.get(select);
|
|
assert(!!result, 1);
|
|
});
|
|
});
|