mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-21 07:38:07 +02:00
Merge pull request #9034 from Snuffleupagus/javascript-null
[api-major] Change `getJavaScript` to return `null`, rather than an empty Array, when no JavaScript exists
This commit is contained in:
commit
17cc94db4e
4 changed files with 16 additions and 8 deletions
|
@ -683,7 +683,7 @@ describe('api', function() {
|
|||
it('gets javascript', function(done) {
|
||||
var promise = doc.getJavaScript();
|
||||
promise.then(function (data) {
|
||||
expect(data).toEqual([]);
|
||||
expect(data).toEqual(null);
|
||||
done();
|
||||
}).catch(function (reason) {
|
||||
done.fail(reason);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue