mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
16 lines
447 B
JavaScript
16 lines
447 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 test = (Config.usesqlite && Config.usesqlitefriends ? it : it.skip);
|
|
test("Should properly setup database", () => {
|
|
assert.doesNotThrow(() => FriendsDatabase.setupDatabase(':memory:'));
|
|
});
|
|
});
|