Remove mapboxism

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

View File

@ -103,17 +103,15 @@ 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); });
}); it('has js example', () => {
it('has js example', () => { expect(select(chunk, 'code[lang=javascript]').length).toBeGreaterThan(0);
expect(select(chunk, 'code[lang=javascript]').length).toBeGreaterThan(0); });
}); 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); });
});
}
}); });
}); });
}); });