blob: 2fd223a044c6f3be7a4dc4ab7bd8e78dffb56a1b [file] [log] [blame]
import {assert} from '@open-wc/testing';
import {hasPath} from './owner-status-column';
suite('owner-status-column', () => {
test('hasPath', () => {
assert(hasPath(new Set(['/COMMIT']), '/COMMIT'));
assert(hasPath(new Set(['/some/file']), 'some/file'));
});
});