pokemon-showdown/test/server/chat-plugins/friends.js
Slayer95 b0dc94f196
Further update tests after startup refactor (#11521)
- Adds config.lazysockets to prevent listening to the network
- Fixes modlog tests
2026-01-25 07:58:21 -05:00

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:'));
});
});