-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Hightlight e2e tests (#4456)"
This reverts commit 8edb4ce.
- Loading branch information
Showing
30 changed files
with
34 additions
and
228 deletions.
There are no files selected for viewing
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
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
This file was deleted.
Oops, something went wrong.
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
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
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
Binary file modified
BIN
+2 Bytes
(100%)
e2e/server/dump/full/main/contentapi_e2e/_sd_dump_metadata.json.bz2
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(110%)
e2e/server/dump/full/main/superdesk_e2e/_sd_dump_metadata.json.bz2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-1.01 KB
(74%)
e2e/server/dump/full/main/superdesk_e2e/archive_history.json.bz2
Binary file not shown.
Binary file modified
BIN
-803 Bytes
(76%)
e2e/server/dump/full/main/superdesk_e2e/archive_versions.json.bz2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-29 Bytes
(95%)
e2e/server/dump/full/main/superdesk_e2e/content_templates.json.bz2
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-210 Bytes
(15%)
e2e/server/dump/full/main/superdesk_e2e/highlights.json.bz2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+1 Byte
(100%)
e2e/server/dump/full/main/superdesk_e2e_archived/_sd_dump_metadata.json.bz2
Binary file not shown.
Binary file modified
BIN
+4 Bytes
(100%)
e2e/server/dump/full/main/superdesk_e2e_legal_archive/_sd_dump_metadata.json.bz2
Binary file not shown.
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
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 |
---|---|---|
@@ -1,18 +1,15 @@ | ||
import _ from 'lodash'; | ||
|
||
HighlightsSettings.$inject = ['$scope', 'api', 'desks', '$q']; | ||
export function HighlightsSettings($scope, api, desks, $q) { | ||
$scope.initialized = false; | ||
|
||
$q.all([ | ||
api.query('content_templates', {where: {template_type: 'highlights'}}), | ||
desks.initialize(), | ||
]).then(([result]) => { | ||
HighlightsSettings.$inject = ['$scope', 'api', 'desks']; | ||
export function HighlightsSettings($scope, api, desks) { | ||
desks.initialize().then(() => { | ||
$scope.desks = desks.deskLookup; | ||
$scope.templates = result._items || []; | ||
$scope.hours = _.range(1, 25); | ||
$scope.auto = {day: 'now/d', week: 'now/w'}; | ||
}); | ||
|
||
$scope.initialized = true; | ||
api.query('content_templates', {where: {template_type: 'highlights'}}).then((result) => { | ||
$scope.templates = result._items || []; | ||
}); | ||
|
||
$scope.hours = _.range(1, 25); | ||
$scope.auto = {day: 'now/d', week: 'now/w'}; | ||
} |
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
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
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
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
Oops, something went wrong.