-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from MailOnline/next-release
Next release
- Loading branch information
Showing
8 changed files
with
749 additions
and
4 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 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
107 changes: 107 additions & 0 deletions
107
src/vastChain/__tests__/__snapshots__/getDetails.spec.js.snap
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,107 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`getDetails must return the media files 1`] = ` | ||
Array [ | ||
Object { | ||
"apiFramework": undefined, | ||
"bitrate": "600", | ||
"codec": undefined, | ||
"delivery": "progressive", | ||
"height": "1080", | ||
"id": undefined, | ||
"maintainAspectRatio": "true", | ||
"maxBitrate": undefined, | ||
"minBitrate": undefined, | ||
"scalable": "true", | ||
"src": "https://test.example.com/test1920x1080.mp4", | ||
"type": "video/mp4", | ||
"universalAdId": "8465", | ||
"width": "1920", | ||
}, | ||
Object { | ||
"apiFramework": undefined, | ||
"bitrate": "600", | ||
"codec": undefined, | ||
"delivery": "progressive", | ||
"height": "432", | ||
"id": undefined, | ||
"maintainAspectRatio": "true", | ||
"maxBitrate": undefined, | ||
"minBitrate": undefined, | ||
"scalable": "true", | ||
"src": "https://test.example.com/test768x432.mp4", | ||
"type": "video/mp4", | ||
"universalAdId": "8465", | ||
"width": "768", | ||
}, | ||
Object { | ||
"apiFramework": undefined, | ||
"bitrate": "600", | ||
"codec": undefined, | ||
"delivery": "progressive", | ||
"height": "362", | ||
"id": undefined, | ||
"maintainAspectRatio": "true", | ||
"maxBitrate": undefined, | ||
"minBitrate": undefined, | ||
"scalable": "true", | ||
"src": "https://test.example.com/test640x362.mp4", | ||
"type": "video/mp4", | ||
"universalAdId": "8465", | ||
"width": "640", | ||
}, | ||
] | ||
`; | ||
|
||
exports[`getDetails must return the media files 2`] = ` | ||
Array [ | ||
Object { | ||
"apiFramework": undefined, | ||
"bitrate": "600", | ||
"codec": undefined, | ||
"delivery": "progressive", | ||
"height": "1080", | ||
"id": undefined, | ||
"maintainAspectRatio": "true", | ||
"maxBitrate": undefined, | ||
"minBitrate": undefined, | ||
"scalable": "true", | ||
"src": "https://test.example.com/test1920x1080.mp4", | ||
"type": "video/mp4", | ||
"universalAdId": "8465", | ||
"width": "1920", | ||
}, | ||
Object { | ||
"apiFramework": undefined, | ||
"bitrate": "600", | ||
"codec": undefined, | ||
"delivery": "progressive", | ||
"height": "432", | ||
"id": undefined, | ||
"maintainAspectRatio": "true", | ||
"maxBitrate": undefined, | ||
"minBitrate": undefined, | ||
"scalable": "true", | ||
"src": "https://test.example.com/test768x432.mp4", | ||
"type": "video/mp4", | ||
"universalAdId": "8465", | ||
"width": "768", | ||
}, | ||
Object { | ||
"apiFramework": undefined, | ||
"bitrate": "600", | ||
"codec": undefined, | ||
"delivery": "progressive", | ||
"height": "362", | ||
"id": undefined, | ||
"maintainAspectRatio": "true", | ||
"maxBitrate": undefined, | ||
"minBitrate": undefined, | ||
"scalable": "true", | ||
"src": "https://test.example.com/test640x362.mp4", | ||
"type": "video/mp4", | ||
"universalAdId": "8465", | ||
"width": "640", | ||
}, | ||
] | ||
`; |
Oops, something went wrong.