-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds pending tests for Viewer Controllers.
new file: spec/services/identity/controllers/identity-viewer-controller-spec.js new file: spec/services/identity/controllers/identity-viewers-list-controller-spec.js
- Loading branch information
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
spec/services/identity/controllers/identity-viewer-controller-spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* global describe, it */ | ||
/* eslint prefer-arrow-callback: 0 */ | ||
/* eslint-disable max-nested-callbacks */ | ||
'use strict'; | ||
|
||
// Reference identity-item-controller-spec.js and identity-channel-controller-spec.js | ||
|
||
describe('Identity Viewer Controller', function () { | ||
describe('GET', function () { | ||
describe('as platform', function () { | ||
it('needs to be tested'); | ||
}); | ||
describe('as admin', function () { | ||
it('needs to be tested'); | ||
}); | ||
}); | ||
|
||
describe('PATCH', function () { | ||
describe('as platform', function () { | ||
it('needs to be tested'); | ||
}); | ||
describe('as admin', function () { | ||
it('needs to be tested'); | ||
}); | ||
}); | ||
|
||
describe('DELETE', function () { | ||
describe('as platform', function () { | ||
it('needs to be tested'); | ||
}); | ||
describe('as admin', function () { | ||
it('needs to be tested'); | ||
}); | ||
}); | ||
}); |
26 changes: 26 additions & 0 deletions
26
spec/services/identity/controllers/identity-viewers-list-controller-spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* global describe, it */ | ||
/* eslint prefer-arrow-callback: 0 */ | ||
/* eslint-disable max-nested-callbacks */ | ||
'use strict'; | ||
|
||
// Reference identity-list-controller-spec.js and identity-channels-list-controller-spec.js | ||
|
||
describe('Identity Viewers List Controller', function () { | ||
describe('GET', function () { | ||
describe('as platform', function () { | ||
it('needs to be tested'); | ||
}); | ||
describe('as admin', function () { | ||
it('needs to be tested'); | ||
}); | ||
}); | ||
|
||
describe('POST', function () { | ||
describe('as platform', function () { | ||
it('needs to be tested'); | ||
}); | ||
describe('as admin', function () { | ||
it('needs to be tested'); | ||
}); | ||
}); | ||
}); |