We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32e6b4f commit 240427dCopy full SHA for 240427d
custom/tests.yaml
@@ -1939,10 +1939,14 @@ api:
1939
__additional:
1940
append.filename_parameter: |-
1941
<%api.Blob:blob%>
1942
- function append(filename) {
1943
- instance.append('foo', blob, filename);
+
+ if (!('get' in instance)) {
1944
+ return {result: null, message: 'This test has not yet been adapted for older browsers'}
1945
}
- return bcd.testOptionParam(append, null, null, 'foo.txt');
1946
1947
+ instance.append('foo', blob, 'bar.txt');
1948
+ var file = instance.get('foo');
1949
+ return file.name === 'bar.txt';
1950
FormData.submitter: |-
1951
if (!('document' in self)) {
1952
return {result: null, message: "Testing in workers is not yet implemented"};
0 commit comments