Skip to content

Commit

Permalink
fix: 🐛 update yarnl.lock and test
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Jul 20, 2024
1 parent 92963d1 commit 61644c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 25 deletions.
20 changes: 0 additions & 20 deletions addon/__tests__/prefixer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,6 @@ describe('prefixer', function () {
expect(nano).toBeDefined();
});

it('handles "user-select" correctly', function() {
var nano = createNano();

nano.putRaw = jest.fn();

nano.put('.one', {
'user-select': 'none'
});

var result = nano.putRaw.mock.calls[0][0].replace(/ +(?= )/g,'');
[
'-ms-user-select',
'-webkit-user-select',
'user-select'
].forEach(function(key) {
expect(result.includes(key)).toBe(true);
});

});

it('doesn\'t kebab values', function() {
var nano = createNano();
var decl = {
Expand Down
9 changes: 4 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8288,13 +8288,12 @@ inline-style-prefixer@^6.0.0:
css-in-js-utils "^3.1.0"
fast-loops "^1.1.3"

inline-style-prefixer@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-7.0.0.tgz#991d550735d42069f528ac1bcdacd378d1305442"
integrity sha512-I7GEdScunP1dQ6IM2mQWh6v0mOYdYmH3Bp31UecKdrcUgcURTcctSe1IECdUznSHKSmsHtjrT3CwCPI1pyxfUQ==
inline-style-prefixer@^7.0.1:
version "7.0.1"
resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-7.0.1.tgz#9310f3cfa2c6f3901d1480f373981c02691781e8"
integrity sha512-lhYo5qNTQp3EvSSp3sRvXMbVQTLrvGV6DycRMJ5dm2BLMiJ30wpXKdDdgX+GmJZ5uQMucwRKHamXSst3Sj/Giw==
dependencies:
css-in-js-utils "^3.1.0"
fast-loops "^1.1.3"

inquirer@^6.2.0:
version "6.5.2"
Expand Down

0 comments on commit 61644c4

Please sign in to comment.