T = int(input()) for _ in range(T): N,M = map(int,input().split()) for i in range(M): input() if N == 1: print('No') else: print('Yes')