adobe / reactor-sdk-javascript

JavaScript SDK for the Reactor API
Apache License 2.0
12 stars 10 forks source link

Make it clear no access token is needed for mocked-Launch spec tests #2

Closed perlmonger42 closed 5 years ago

perlmonger42 commented 5 years ago

The dummy token used in the specs does not need to be replaced with a real token, because the unit tests don't actually hit a Launch server. I've changed

const accessToken = 'Dummy-Access-Token';

to

const accessToken = 'No real token needed here because Launch calls are mocked';

in an attempt to make that clearer.