Skip to content

Commit

Permalink
added entos changes
Browse files Browse the repository at this point in the history
  • Loading branch information
anjalimukundan committed Nov 12, 2024
1 parent 660178f commit a162802
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ export default class App extends Base {
process.env.REPORTINGID = reportingId;
process.env.STANDALONE = standalone;
process.env.STANDALONE_PREFIX = standalonePrefix;
process.env.SDKS_AVAILABLE = [...CONSTANTS.defaultSDKs, ...CONSTANTS.additionalSDKs];
if (platform) {
process.env.PLATFORM = platform;
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/IntentReader.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ import GetPubSubStatusHandler from './pubsub/handlers/GetPubSubStatusHandler';
import CallMethodHandler from './pubsub/handlers/CallMethodHandler';
import DataFetchHandler from './pubsub/handlers/DataFetchHandler';
import HealthCheckHandler from './pubsub/handlers/HealthCheckHandler';
import RunTestHandler from './pubsub/handlers/RunTestHandler';
import RegisterEventHandler from './pubsub/handlers/RegisterEventHandler';
import ClearEventListeners from './pubsub/handlers/ClearEventListeners';
import ClearEventHandler from './pubsub/handlers/clearEventHandler';
Expand All @@ -45,6 +44,7 @@ import GetEventResponse from './pubsub/handlers/GetEventResponse';
import GetMethodResponseHandler from './pubsub/handlers/GetMethodResponseHandler';
import VisibilityStateHandler from '../src/pubsub/handlers/VisibilityStateHandler';
import LifecycleMethodHandler from './pubsub/handlers/LifecycleMethodHandler';
import RunTestHandler from 'RunTestHandler';

const logger = require('./utils/Logger')('IntentReader.js');

Expand Down
1 change: 1 addition & 0 deletions test/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ module.exports = {
'^Test_Runner$': '<rootDir>/../src/Test_Runner.js',
'^EventInvocation$': '<rootDir>/../src//EventInvocation.js',
'^IntentReader$': '../src/IntentReader.js',
'^RunTestHandler$': '<rootDir>/../src/pubsub/handlers/RunTestHandler.js',
},
collectCoverage: true,
coverageThreshold: {
Expand Down
2 changes: 1 addition & 1 deletion webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ module.exports = {
alias: ['/plugins/IntentReader.js', '/src/IntentReader.js'],
},
{
name: 'runTestHandler',
name: 'RunTestHandler',
alias: ['/plugins/runTestHandler.js', '/src/pubsub/handlers/RunTestHandler.js'],
},
],
Expand Down
2 changes: 1 addition & 1 deletion webpack.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ module.exports = {
alias: ['/plugins/IntentReader.js', '/src/IntentReader.js'],
},
{
name: 'runTestHandler',
name: 'RunTestHandler',
alias: ['/plugins/runTestHandler.js', '/src/pubsub/handlers/RunTestHandler.js'],
},
],
Expand Down

0 comments on commit a162802

Please sign in to comment.