You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am able to test whether or not the first media query is created when both are created but because L86 of parsers.js only passes the first (0) value of the array I'm unable to determine if the second media query was created.
Here's the test:
...
it("Creates a media query when large size is declared",function(){sassaby.includedMixin('helper--center-image-outside-bounds').calledWithArgs('1000px','2000px','3000px').createsMediaQuery('(min-width: 900px)');});
...
The text was updated successfully, but these errors were encountered:
I am struggling to test whether or not a second media query is created within a mixin.
This may be user error, so please let me know if I'm testing this incorrectly.
I'm working on getting this working and will get a PR together if I'm able to figure something out.
Here's the scss:
I am able to test whether or not the first media query is created when both are created but because L86 of
parsers.js
only passes the first (0
) value of the array I'm unable to determine if the second media query was created.Here's the test:
The text was updated successfully, but these errors were encountered: