describe('when the same rule has been added before', () => {
            it('should not be added to the existing list of banRules', async () => {
                const existingBanRules = await dataStore.getBanRules();
                assert.deepStrictEqual(existingBanRules, [banRule]);
                await dataStore.addBanRule(banRule);