|
|
@@ -6,10 +6,12 @@
|
|
|
import Font from './../src/font';
|
|
|
import FontFamily from './../src/fontfamily';
|
|
|
import FontSize from './../src/fontsize';
|
|
|
+import FontColor from './../src/fontcolor';
|
|
|
+import FontBackgroundColor from './../src/fontbackgroundcolor';
|
|
|
|
|
|
describe( 'Font', () => {
|
|
|
- it( 'requires FontSize', () => {
|
|
|
- expect( Font.requires ).to.deep.equal( [ FontFamily, FontSize ] );
|
|
|
+ it( 'requires FontFamily, FontSize, FontColor, FontBackgroundColor', () => {
|
|
|
+ expect( Font.requires ).to.deep.equal( [ FontFamily, FontSize, FontColor, FontBackgroundColor ] );
|
|
|
} );
|
|
|
|
|
|
it( 'defines plugin name', () => {
|