mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 15:18:08 +02:00
parent
7102e4a5c3
commit
34d2e72df2
4 changed files with 20 additions and 22 deletions
|
@ -2238,15 +2238,15 @@ describe("annotation", function () {
|
|||
})
|
||||
.then(object => {
|
||||
const actions = object.actions;
|
||||
expect(actions.MouseEnter).toEqual(["hello()"]);
|
||||
expect(actions.MouseExit).toEqual([
|
||||
expect(actions["Mouse Enter"]).toEqual(["hello()"]);
|
||||
expect(actions["Mouse Exit"]).toEqual([
|
||||
"world()",
|
||||
"olleh()",
|
||||
"foo()",
|
||||
"dlrow()",
|
||||
"oof()",
|
||||
]);
|
||||
expect(actions.MouseDown).toEqual(["bar()"]);
|
||||
expect(actions["Mouse Down"]).toEqual(["bar()"]);
|
||||
done();
|
||||
}, done.fail);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue