From e7cf7b11ca3f70a6401c0499376f78984b18e1cc Mon Sep 17 00:00:00 2001 From: Max Waterman Date: Tue, 11 Aug 2020 05:30:00 +0800 Subject: [PATCH] fix(docs): Update 03-how-it-works.md (#3539) trivial typo --- docs/intro/03-how-it-works.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/03-how-it-works.md b/docs/intro/03-how-it-works.md index eafdec9da..20cea11f7 100644 --- a/docs/intro/03-how-it-works.md +++ b/docs/intro/03-how-it-works.md @@ -31,7 +31,7 @@ Once the server sees the websocket connection, it instructs the client -- over t When the browser loads this context page, the onload event handler connects the context page to the client page via postMessage. The framework adapter is in charge at this point: it runs the test, reporting errors or success by messaging through the client page. Messages sent to the client page are forwarded through the websocket to the Karma server. The server re-dispatches these messages as 'browser' events. The reporters listening to 'browser' events get the data; they may print it, save it to files, or forward the data to another service. -Since the data is sent by the test framework adapter to the reporter, adapters and reporters almost always come in pairs, like karma-jasmine and karma-jasmine-reporter. The detailed content of test-result data is of no concern to other parts of karma: only the reporter needs to know it format. +Since the data is sent by the test framework adapter to the reporter, adapters and reporters almost always come in pairs, like karma-jasmine and karma-jasmine-reporter. The detailed content of test-result data is of no concern to other parts of karma: only the reporter needs to know its format. Karma has many variations and options that may cause different workflow with different configurations.