-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathinvalidImage.html
More file actions
43 lines (38 loc) · 1.67 KB
/
invalidImage.html
File metadata and controls
43 lines (38 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html lang="en-US">
<head>
<link href="/assets/index.css" rel="stylesheet" type="text/css" />
<link href="focus-indicator.css" rel="stylesheet" type="text/css" />
<script crossorigin="anonymous" src="https://unpkg.com/react@16.8.6/umd/react.development.js"></script>
<script crossorigin="anonymous" src="/test-harness.js"></script>
<script crossorigin="anonymous" src="/test-page-object.js"></script>
<script crossorigin="anonymous" src="/__dist__/webchat-es5.js"></script>
</head>
<body>
<main id="webchat"></main>
<script>
run(
async function () {
const directLine = WebChat.createDirectLine({ token: await testHelpers.token.fetchDirectLineToken() });
const store = testHelpers.createStore();
WebChat.renderWebChat(
{ activityMiddleware: testHelpers.createRunHookActivityMiddleware(), directLine, store },
document.getElementById('webchat')
);
await pageConditions.uiConnected();
// SETUP: An empty file blob.
const blob = new File([new ArrayBuffer(1024)], 'empty.zip', { type: 'image/jpeg' });
// WHEN: Call useSendMessage hook to send a file a custom thumbnail.
await pageObjects.runHook(({ useSendMessage }) =>
useSendMessage()(undefined, undefined, { attachments: [{ blob }] })
);
// THEN: It should send the file.
await pageConditions.numActivitiesShown(3);
await pageConditions.allOutgoingActivitiesSent();
await host.snapshot();
},
{ ignoreErrors: 'The source image could not be decoded.' }
);
</script>
</body>
</html>