Skip to content

Commit

Permalink
test: fix depth expectations
Browse files Browse the repository at this point in the history
  • Loading branch information
idoros committed Oct 10, 2023
1 parent 8a9df6e commit b342770
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/webpack-plugin/test/e2e/dual-mode-esm.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ describe(`(${project})`, () => {
expect(vanillaStylesNoRuntime).to.eql(stylableStylesNoRuntime);

expect(normalizeNamespace(vanillaStyles)).to.eql([
{ id: 'designsystem', depth: '0' },
{ id: 'label', depth: '0' },
{ id: 'button', depth: '1' },
{ id: 'basictheme', depth: '2' },
{ id: 'labeltheme', depth: '3' },
{ id: 'buttontheme', depth: '3' },
{ id: 'designsystem', depth: '1' },
{ id: 'label', depth: '1' },
{ id: 'button', depth: '2' },
{ id: 'basictheme', depth: '3' },
{ id: 'labeltheme', depth: '4' },
{ id: 'buttontheme', depth: '4' },
]);
});
});
Expand Down

0 comments on commit b342770

Please sign in to comment.