chore: fix typo in connection.spec.js (#7326)

recieved -> received
This commit is contained in:
Ikko Ashimine 2021-06-14 14:44:36 +09:00 committed by GitHub
parent c07e6d4fa9
commit f984beb152
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ describe('creating a Connection', () => {
const result = await connection.send('Browser.getVersion');
/* We can't expect exact results as the version of Chrome/CDP might change
* and we don't want flakey tests, so let's assert the structure, which is
* enough to confirm the result was recieved successfully.
* enough to confirm the result was received successfully.
*/
expect(result).toEqual({
protocolVersion: expect.any(String),