forked from amzn/style-dictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): bump lodash in /examples/advanced/create-react-app (amzn…
…#447) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
c34cfa5
commit 704b356
Showing
3 changed files
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with | ||
* the License. A copy of the License is located at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions | ||
* and limitations under the License. | ||
*/ | ||
var fs = require('fs-extra'); | ||
var helpers = require('../__helpers'); | ||
var formats = require('../../lib/common/formats'); | ||
|
||
var file = { | ||
"destination": "__output/", | ||
"format": "javascript/es6", | ||
"filter": { | ||
"attributes": { | ||
"category": "color" | ||
} | ||
} | ||
}; | ||
|
||
var dictionary = { | ||
"allProperties": [{ | ||
"name": "red", | ||
"value": "#EF5350", | ||
"original": { | ||
"value": "#EF5350" | ||
}, | ||
"attributes": { | ||
"category": "color", | ||
"type": "base", | ||
"item": "red", | ||
"subitem": "400" | ||
}, | ||
"path": [ | ||
"color", | ||
"base", | ||
"red", | ||
"400" | ||
] | ||
}] | ||
}; | ||
|
||
var formatter = formats['javascript/es6-ts-declarations'].bind(file); | ||
|
||
describe('formats', () => { | ||
describe('javascript/es6-ts-declarations', () => { | ||
beforeEach(() => { | ||
helpers.clearOutput(); | ||
}); | ||
|
||
afterEach(() => { | ||
helpers.clearOutput(); | ||
}); | ||
|
||
it('should be a valid JS file', () => { | ||
const declarations = './__tests__/__output/output.d.ts'; | ||
fs.writeFileSync(declarations, formatter(dictionary) ); | ||
|
||
// get all lines that begin with export | ||
const lines = fs.readFileSync(declarations, 'utf-8') | ||
.split('\n') | ||
.filter(l => l.indexOf('export') >= 0); | ||
|
||
// assert that any lines have a string type definition | ||
lines.forEach(l => { | ||
expect(l.match(/^export.* : string;$/g).length).toEqual(1); | ||
}); | ||
}); | ||
}); | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters