Browse Source

Fix dangling comma.

Maciej Gołaszewski 5 years ago
parent
commit
a6a60e4b11

+ 1 - 1
packages/ckeditor5-cloud-services/tests/cloudservices.js

@@ -112,7 +112,7 @@ describe( 'CloudServices', () => {
 				.create( {
 					plugins: [ CloudServices ],
 					cloudServices: {
-						tokenUrl: 'http://token-endpoint',
+						tokenUrl: 'http://token-endpoint'
 					}
 				} )
 				.then( context => {

+ 1 - 1
packages/ckeditor5-cloud-services/tests/manual/token.js

@@ -41,7 +41,7 @@ function handleRequest( xhr, resolve, reject ) {
 	const xhrSpan = requestOutput.querySelector( '.xhr-data' );
 	const xhrData = {
 		status: xhr.status,
-		response: xhr.response,
+		response: xhr.response
 	};
 	xhrSpan.innerText = JSON.stringify( xhrData, null, 2 );