iOS Deployment Target が 13.0 以上の時に、
いつも通り self.present() をすると新たなモーダルの仕様が追加されていた。
modalPresentationStyle に .fullScreen を代入すると解決した。
let storyboard: UIStoryboard = UIStoryboard(name: "Test", bundle: nil)
let vc: UIViewController = storyboard.instantiateViewController(withIdentifier: "Test")
if #available(iOS 13.0, *) {
vc.modalPresentationStyle = .fullScreen
}
self.present(vc, animated: true, completion: nil)