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 f42bbb3 commit 3f06424Copy full SHA for 3f06424
tests/unit/components/DocumentationTopic/Summary/Availability.spec.js
@@ -149,7 +149,7 @@ describe('Availability', () => {
149
});
150
151
describe('with API Changes', () => {
152
- it('sets changes classes for platforms that have changed', () => {
+ it('sets changes classes for platforms that have changed', async () => {
153
store.state.apiChanges = {
154
[provide.identifier]: {
155
availability: {
@@ -175,6 +175,7 @@ describe('Availability', () => {
175
},
176
};
177
178
+ await wrapper.vm.$nextTick();
179
const pills = wrapper.findAll('.technology, .platform');
180
181
expect(pills.at(2).classes()).toEqual(['platform', 'changed', 'changed-deprecated']);
0 commit comments