export function assertDir(absDir: string, message?: string) {
  assert.ok(existsDir(absDir), message || `directory "${absDir}" is not exists`)
}