import 'dotenv/config'; import 'mocha'; import { expect } from 'chai'; describe('Automerge Integration', () => { describe('Backend Repo is Initialized', () => { it('Backend Repo should be ready', () => { expect(true).to.be.equal(true); }); }); describe('Creating a Node should create a new Automerge Document', () => { it('Backend Repo should be ready', () => { expect(true).to.be.equal(true); }); }); describe('Existing Nodes should get an Automerge Document', () => { it('Backend Repo should be ready', () => { expect(true).to.be.equal(true); }); }); describe('Authorisation', () => { it('Backend Repo should be ready', () => { expect(true).to.be.equal(true); }); }); describe('Update Automerge Document', () => { it('Backend Repo should be ready', () => { expect(true).to.be.equal(true); }); }); describe('DAG Altering Operations should be synced', () => { it('Backend Repo should be ready', () => { expect(true).to.be.equal(true); }); }); });