mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-04 12:37:56 -05:00
17 lines
483 B
JavaScript
17 lines
483 B
JavaScript
/**
|
|
* Tests for the friends list chat plugin. By Mia
|
|
* @author mia-pi-git
|
|
*/
|
|
'use strict';
|
|
|
|
const assert = require('../../assert');
|
|
|
|
describe.skip("Friends lists", () => {
|
|
const {FriendsDatabase} = require('../../../dist/server/friends');
|
|
const {Config} = require('../../../dist/server/config-loader');
|
|
const test = (Config.usesqlite ? it : it.skip);
|
|
test("Should properly setup database", () => {
|
|
assert.doesNotThrow(() => FriendsDatabase.setupDatabase(':memory:'));
|
|
});
|
|
});
|