Unverified Commit 5ef612fb authored by Kyle Keating's avatar Kyle Keating Committed by GitHub

Merge pull request #1348 from hypothesis/module-test-descriptions

Standardize the module test descriptions
parents b653e01c b270d8e9
......@@ -6,7 +6,7 @@ const createStore = require('../../create-store');
const groups = require('../groups');
const session = require('../session');
describe('sidebar.store.modules.groups', () => {
describe('sidebar/store/modules/groups', () => {
const publicGroup = immutable({
id: '__world__',
name: 'Public',
......
......@@ -6,7 +6,7 @@ const init = links.init;
const update = links.update.UPDATE_LINKS;
const action = links.actions.updateLinks;
describe('sidebar.reducers.links', function() {
describe('sidebar/store/modules/links', function() {
describe('#init()', function() {
it('returns a null links object', function() {
assert.deepEqual(init(), null);
......
......@@ -5,7 +5,7 @@ const createStore = require('../../create-store');
const selection = require('../selection');
const uiConstants = require('../../../ui-constants');
describe('store/modules/selection', () => {
describe('sidebar/store/modules/selection', () => {
let store;
let fakeSettings = [{}, {}];
......
......@@ -5,7 +5,7 @@ const session = require('../session');
const { init } = session;
describe('sidebar.reducers.session', function() {
describe('sidebar/store/modules/session', function() {
let store;
beforeEach(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment