mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
This migrates the existing webapp tests to using Jest and Enzyme. The infrastructure is put in place for React component testing, and a few simple example component tests are implemented. This also adds snapshot testing of components, coverage checking for the webapp (although that is not yet integrated to Coveralls), and the ability to run npm run test:watch to automatically re-run affected tests when working on the webapp codebase.
32 lines
1.3 KiB
JavaScript
32 lines
1.3 KiB
JavaScript
import * as CommonUtils from 'utils/commons.jsx';
|
|
|
|
describe('CommonUtils.getNearestPoint', function() {
|
|
test('should return nearest point', function() {
|
|
for (const data of [
|
|
{
|
|
points: [{x: 30, y: 40}, {x: 50, y: 50}, {x: 100, y: 2}, {x: 500, y: 200}, {x: 110, y: 20}, {x: 10, y: 20}],
|
|
pivotPoint: {x: 10, y: 20},
|
|
nearestPoint: {x: 10, y: 20},
|
|
nearestPointLte: {x: 10, y: 20}
|
|
},
|
|
{
|
|
points: [{x: 50, y: 50}, {x: 100, y: 2}, {x: 500, y: 200}, {x: 110, y: 20}, {x: 100, y: 90}, {x: 30, y: 40}],
|
|
pivotPoint: {x: 10, y: 20},
|
|
nearestPoint: {x: 30, y: 40},
|
|
nearestPointLte: {}
|
|
},
|
|
{
|
|
points: [{x: 50, y: 50}, {x: 1, y: 1}, {x: 15, y: 25}, {x: 100, y: 2}, {x: 500, y: 200}, {x: 110, y: 20}],
|
|
pivotPoint: {x: 10, y: 20},
|
|
nearestPoint: {x: 15, y: 25},
|
|
nearestPointLte: {x: 1, y: 1}
|
|
}
|
|
]) {
|
|
const nearestPoint = CommonUtils.getNearestPoint(data.pivotPoint, data.points);
|
|
|
|
expect(nearestPoint.x).toEqual(data.nearestPoint.x);
|
|
expect(nearestPoint.y).toEqual(data.nearestPoint.y);
|
|
}
|
|
});
|
|
});
|