"ie_10",
{
"os": "ios",
- "os_version": "latest",
+ "os_version": "12.4",
"device": "iPhone XS",
"real_mobile": "true"
},
},
{
"os": "android",
- "os_version": "latest",
+ "os_version": "9.0",
"device": "Google Pixel 3",
"real_mobile": "true"
},
// Open it first
plugin.down($submenu);
- plugin.up($submenu);
-
- setTimeout(() => {
+ $html.on('up.zf.accordionMenu', function () {
// Should be hidden
- $submenu.should.be.hidden;
- // Should have attributes updated and without active classe
+ $submenu.should.be.hidden; // Should have attributes updated and without active classe
+
$submenu.should.have.attr('aria-hidden', 'true');
$submenu.should.not.have.class('is-active');
done();
- }, 1);
+ });
+ plugin.up($submenu);
});
it('toggles attributes of title of the targeted container', function() {