* Use 'default' as a default JSON style * Using expect instead of assert * Assert badge is valid svg in test * Assert badge is valid json in test
14 lines
158 B
JavaScript
14 lines
158 B
JavaScript
'use strict';
|
|
|
|
const advertisedStyles = [
|
|
'plastic',
|
|
'flat',
|
|
'flat-square',
|
|
'for-the-badge',
|
|
'social',
|
|
];
|
|
|
|
module.exports = {
|
|
advertisedStyles
|
|
};
|