/**
 * Names for the test collections, separated by type document type and purpose.
 * @author Benedikt Arnarsson
 */
const COLLECTION_NAMES: Readonly<Record<string, string>> = {
  test: 'test_collection',
  objTest: 'test_obj_collection',
  arrayTest: 'test_array_collection',
  coconut: 'test_coconut_collection',
};

export default COLLECTION_NAMES;
