We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbcacfb commit a2ade57Copy full SHA for a2ade57
packages/core/test/index_tests.js
@@ -96,25 +96,6 @@ tap.test(
96
}
97
);
98
99
-tap.test(
100
- 'getSupportedTemplateExtensions - calls patternlab.getSupportedTemplateExtensions and returns default template engine extensions',
101
- test => {
102
- //arrange
103
- const pl = new entry(testConfig);
104
-
105
- //act
106
- const expectedExtensions = ['.mustache'];
107
108
- //assert
109
- test.equals(
110
- pl.getSupportedTemplateExtensions().length,
111
- expectedExtensions.length
112
- );
113
- test.same(pl.getSupportedTemplateExtensions(), expectedExtensions);
114
- test.end();
115
- }
116
-);
117
118
tap.test('patternsonly a promise', test => {
119
//arrange
120
const revert = entry.__set__('loaduikits', loadUIKitsMock);
0 commit comments