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 26672df commit d25bc8eCopy full SHA for d25bc8e
test/unit.js
@@ -774,9 +774,6 @@
774
form.fileupload({
775
sequentialUploads: true,
776
dataType: 'json',
777
- start: function() {
778
- events.push('start');
779
- },
780
send: function() {
781
events.push('send');
782
},
@@ -785,20 +782,17 @@
785
completed++;
786
783
787
784
stop: function() {
788
- events.push('stop');
789
if (completed === 4) {
790
expect(events.join(',')).to.equal(
791
[
792
- 'start',
793
'send',
794
'complete',
795
796
797
798
799
800
- 'complete',
801
- 'stop'
+ 'complete'
802
].join(',')
803
);
804
done();
0 commit comments