(chart)
| 1 | describe('Plugin.filler', function() { |
| 2 | const fillerPluginRegisterWarning = 'Tried to use the \'fill\' option without the \'Filler\' plugin enabled. Please import and register the \'Filler\' plugin and make sure it is not disabled in the options'; |
| 3 | function decodedFillValues(chart) { |
| 4 | return chart.data.datasets.map(function(dataset, index) { |
| 5 | var meta = chart.getDatasetMeta(index) || {}; |
| 6 | expect(meta.$filler).toBeDefined(); |
| 7 | return meta.$filler.fill; |
| 8 | }); |
| 9 | } |
| 10 | |
| 11 | describe('auto', jasmine.fixture.specs('plugin.filler')); |
| 12 |
no test coverage detected