chore: Remove unused eslint-rules & lint files

This commit is contained in:
Braks
2022-04-11 11:30:10 +02:00
parent 103fc71857
commit f011ea61b1
5 changed files with 11 additions and 19 deletions
@@ -30,7 +30,6 @@ describe('test store action setElements', () => {
})
it('parses elements to flow-elements', () => {
console.log(store.getEdges)
store.getEdges.forEach((edge) => expect(isEdge(edge)).to.be.true)
store.getNodes.forEach((node) => expect(isNode(node)).to.be.true)
})
@@ -6,9 +6,7 @@ describe('test store state', () => {
const { store: initial } = useVueFlow()
beforeEach(() => ({ store } = useVueFlow()))
it('has any initial state', () => {
expect(store).to.exist
})
it('has any initial state', () => expect(store).to.exist)
it('has default initial state', () => {
Object.keys(store).forEach((state) => {