Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
5ef612fb
Unverified
Commit
5ef612fb
authored
Sep 03, 2019
by
Kyle Keating
Committed by
GitHub
Sep 03, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1348 from hypothesis/module-test-descriptions
Standardize the module test descriptions
parents
b653e01c
b270d8e9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
groups-test.js
src/sidebar/store/modules/test/groups-test.js
+1
-1
links-test.js
src/sidebar/store/modules/test/links-test.js
+1
-1
selection-test.js
src/sidebar/store/modules/test/selection-test.js
+1
-1
session-test.js
src/sidebar/store/modules/test/session-test.js
+1
-1
No files found.
src/sidebar/store/modules/test/groups-test.js
View file @
5ef612fb
...
...
@@ -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'
,
...
...
src/sidebar/store/modules/test/links-test.js
View file @
5ef612fb
...
...
@@ -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
);
...
...
src/sidebar/store/modules/test/selection-test.js
View file @
5ef612fb
...
...
@@ -5,7 +5,7 @@ const createStore = require('../../create-store');
const
selection
=
require
(
'../selection'
);
const
uiConstants
=
require
(
'../../../ui-constants'
);
describe
(
'store/modules/selection'
,
()
=>
{
describe
(
's
idebar/s
tore/modules/selection'
,
()
=>
{
let
store
;
let
fakeSettings
=
[{},
{}];
...
...
src/sidebar/store/modules/test/session-test.js
View file @
5ef612fb
...
...
@@ -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
(()
=>
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment