Remove mapboxism

This commit is contained in:
Tom MacWright
2016-03-02 19:12:04 -08:00
parent 4d8786b865
commit 8fcfc1152b

View File

@ -103,7 +103,6 @@ describe('content', () => {
expect(endpoint.length).toBeGreaterThan(0); expect(endpoint.length).toBeGreaterThan(0);
expect(endpoint[0].value.toString()).toMatch(/^(PUT|POST|GET|DELETE|PATCH)/); expect(endpoint[0].value.toString()).toMatch(/^(PUT|POST|GET|DELETE|PATCH)/);
}); });
if (!file.match(/(style|static_gl|maps|static_classic|uploads)/)) {
it('has python example', () => { it('has python example', () => {
expect(select(chunk, 'code[lang=python]').length).toBeGreaterThan(0); expect(select(chunk, 'code[lang=python]').length).toBeGreaterThan(0);
}); });
@ -113,7 +112,6 @@ describe('content', () => {
it('has curl example', () => { it('has curl example', () => {
expect(select(chunk, 'code[lang=curl]').length).toBeGreaterThan(0); expect(select(chunk, 'code[lang=curl]').length).toBeGreaterThan(0);
}); });
}
}); });
}); });
}); });