Skip to content

Commit

Permalink
test: Fix expectation sort order
Browse files Browse the repository at this point in the history
  • Loading branch information
Quramy committed Oct 12, 2023
1 parent 19a1d9d commit 9fd1b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/dts-creator.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ describe('DtsCreator', () => {
creator.create('test/combined/combined.css').then(content => {
assert.equal(content.contents.length, 3);
assert.equal(content.contents[0], 'readonly "block": string;');
assert.equal(content.contents[1], 'readonly "myClass": string;');
assert.equal(content.contents[2], 'readonly "box": string;');
assert.equal(content.contents[1], 'readonly "box": string;');
assert.equal(content.contents[2], 'readonly "myClass": string;');
done();
});
});
Expand Down

0 comments on commit 9fd1b84

Please sign in to comment.