#Tools
- http://codepen.io/damonbauer/pen/ONwKjM
- http://the-echoplex.net/flexyboxes
- http://flexboxfroggy.com
- http://flexboxin5.com
#Articles/Guides
import ReactNativeBlobUtil from 'react-native-blob-util'; | |
describe('SomeTest', () => { | |
beforeEach(() => { | |
jest.clearAllMocks(); | |
}); | |
it('handles errors', () => { | |
ReactNativeBlobUtil.config.mockReturnValueOnce({ | |
fetch: jest.fn().mockReturnValue({ |
{ | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Theme - Cobalt2/cobalt2.tmTheme", | |
"command": "toggle_overwrite", | |
"fade_fold_buttons": false, | |
"folder_exclude_patterns": | |
[ | |
"bin", | |
".sass-cache", |
@mixin bgColor($count, $color) { | |
$loop_color: $color; | |
@for $i from 0 through $count { | |
$loop_color: shade($loop_color, 8%); | |
li:nth-of-type(#{$i}) > a { | |
background-color: $loop_color; | |
} |