Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
a961147
saving
raju-opti Aug 22, 2024
eb9110c
saving
raju-opti Aug 27, 2024
f88fd9f
up
raju-opti Aug 27, 2024
c406523
fix test
raju-opti Aug 28, 2024
de99436
fix more tests
raju-opti Aug 29, 2024
ef85d65
fix tests
raju-opti Aug 29, 2024
580a0b6
saving
raju-opti Aug 30, 2024
7940193
saving
raju-opti Sep 2, 2024
08636b7
emitter test
raju-opti Sep 3, 2024
f1a68e4
save
raju-opti Sep 4, 2024
5439eb2
fix more test
raju-opti Sep 5, 2024
2ff16c9
fix tests
raju-opti Sep 5, 2024
a5305f9
fix tests
raju-opti Sep 5, 2024
9c6e8ee
fix
raju-opti Sep 6, 2024
2441875
update
raju-opti Sep 9, 2024
3755d24
update
raju-opti Sep 9, 2024
2d25fd5
update
raju-opti Sep 9, 2024
a086e62
saving
raju-opti Sep 10, 2024
c705ccb
add tests
raju-opti Sep 10, 2024
3c8a57c
add test
raju-opti Sep 10, 2024
b276b7e
tests
raju-opti Sep 11, 2024
cae172f
update
raju-opti Sep 13, 2024
53ccf3e
update
raju-opti Sep 13, 2024
8dea409
tests
raju-opti Sep 17, 2024
f57c315
add more tests
raju-opti Sep 17, 2024
1643628
add tests
raju-opti Sep 18, 2024
b41f28f
update
raju-opti Sep 18, 2024
0098fc2
update
raju-opti Sep 18, 2024
5758a9b
tests
raju-opti Sep 18, 2024
a71fdd9
add more tests
raju-opti Sep 19, 2024
5a29def
add tests
raju-opti Sep 19, 2024
fcbef0d
update name
raju-opti Sep 19, 2024
acf7bcf
remove notification registry
raju-opti Sep 19, 2024
4a98a6d
fix repeater test
raju-opti Sep 19, 2024
a24e263
fixes
raju-opti Sep 19, 2024
d27b3b1
updates
raju-opti Sep 20, 2024
3cc4e7c
update
raju-opti Sep 20, 2024
515696e
update
raju-opti Sep 20, 2024
f92b56f
update
raju-opti Sep 20, 2024
56ebf5e
update
raju-opti Sep 20, 2024
a877e9d
upd
raju-opti Sep 20, 2024
c2fbc70
exclude spec from build
raju-opti Sep 20, 2024
19877a2
private
raju-opti Sep 20, 2024
ef4879d
update
raju-opti Sep 27, 2024
0b8c06d
update
raju-opti Sep 27, 2024
c483d85
updating
raju-opti Sep 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixes
  • Loading branch information
raju-opti committed Sep 27, 2024
commit a24e263ee0442bddaa1ad46bd6389a37af6f08cc
2 changes: 1 addition & 1 deletion lib/core/bucketer/index.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
LOG_LEVEL,
} from '../../utils/enums';
import { createLogger } from '../../plugins/logger';
import projectConfig from '../project_config';
import projectConfig from '../../project_config/project_config';
import { getTestProjectConfig } from '../../tests/test_data';

var buildLogMessageFromArgs = args => sprintf(args[1], ...args.splice(2));
Expand Down
3 changes: 1 addition & 2 deletions lib/core/decision_service/index.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,12 @@ import { createForwardingEventProcessor } from '../../plugins/event_processor/fo
import { createNotificationCenter } from '../notification_center';
import Optimizely from '../../optimizely';
import OptimizelyUserContext from '../../optimizely_user_context';
import projectConfig from '../project_config';
import projectConfig, { createProjectConfig } from '../../project_config/project_config';
import AudienceEvaluator from '../audience_evaluator';
import errorHandler from '../../plugins/error_handler';
import eventDispatcher from '../../plugins/event_dispatcher/index.node';
import * as jsonSchemaValidator from '../../utils/json_schema_validator';
import { getMockProjectConfigManager } from '../../tests/mock_project_config_manager';
import { createProjectConfig } from '../project_config';

import {
getTestProjectConfig,
Expand Down
2 changes: 1 addition & 1 deletion lib/core/event_builder/event_helpers.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import sinon from 'sinon';
import { assert } from 'chai';

import fns from '../../utils/fns';
import * as projectConfig from '../project_config';
import * as projectConfig from '../../project_config/project_config';
import * as decision from '../decision';
import { buildImpressionEvent, buildConversionEvent } from './event_helpers';

Expand Down
2 changes: 1 addition & 1 deletion lib/core/event_builder/index.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { assert } from 'chai';

import fns from '../../utils/fns';
import testData from '../../tests/test_data';
import projectConfig from '../project_config';
import projectConfig from '../../project_config/project_config';
import packageJSON from '../../../package.json';
import { getConversionEvent, getImpressionEvent } from './';

Expand Down
2 changes: 1 addition & 1 deletion lib/core/optimizely_config/index.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { cloneDeep } from 'lodash';
import sinon from 'sinon';

import { createOptimizelyConfig, OptimizelyConfig } from './';
import { createProjectConfig } from '../project_config';
import { createProjectConfig } from '../../project_config/project_config';
import {
getTestProjectConfigWithFeatures,
getTypedAudiencesConfig,
Expand Down
2 changes: 1 addition & 1 deletion lib/index.browser.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import { BrowserOdpEventManager } from './plugins/odp/event_manager/index.browse
import { BrowserOdpEventApiManager } from './plugins/odp/event_api_manager/index.browser';
import { OdpEvent } from './core/odp/odp_event';
import { getMockProjectConfigManager } from './tests/mock_project_config_manager';
import { createProjectConfig } from './core/project_config';
import { createProjectConfig } from './project_config/project_config';

var LocalStoragePendingEventsDispatcher = eventProcessor.LocalStoragePendingEventsDispatcher;

Expand Down
1 change: 0 additions & 1 deletion lib/index.lite.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import * as loggerPlugin from './plugins/logger';
import optimizelyFactory from './index.lite';
import configValidator from './utils/config_validator';
import { getMockProjectConfigManager } from './tests/mock_project_config_manager';
import { createProjectConfig } from './core/project_config';

describe('optimizelyFactory', function() {
describe('APIs', function() {
Expand Down
2 changes: 0 additions & 2 deletions lib/index.lite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import Optimizely from './optimizely';
import { createNotificationCenter } from './core/notification_center';
import { createForwardingEventProcessor } from './plugins/event_processor/forwarding_event_processor';
import { OptimizelyDecideOption, Client, ConfigLite } from './shared_types';
import { createNoOpDatafileManager } from './plugins/datafile_manager/no_op_datafile_manager';
import * as commonExports from './common_exports';

const logger = getLogger();
Expand Down Expand Up @@ -78,7 +77,6 @@ setLogLevel(LogLevel.ERROR);
...config,
logger,
errorHandler,
datafileManager: createNoOpDatafileManager(),
eventProcessor,
notificationCenter,
isValidInstance: isValidInstance,
Expand Down
2 changes: 1 addition & 1 deletion lib/index.node.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import * as loggerPlugin from './plugins/logger';
import optimizelyFactory from './index.node';
import configValidator from './utils/config_validator';
import { getMockProjectConfigManager } from './tests/mock_project_config_manager';
import { createProjectConfig } from './core/project_config';
import { createProjectConfig } from './project_config/project_config';

describe('optimizelyFactory', function() {
describe('APIs', function() {
Expand Down
46 changes: 0 additions & 46 deletions lib/modules/datafile-manager/backoffController.ts

This file was deleted.

32 changes: 0 additions & 32 deletions lib/modules/datafile-manager/browserDatafileManager.ts

This file was deleted.

96 changes: 0 additions & 96 deletions lib/modules/datafile-manager/browserRequest.ts

This file was deleted.

33 changes: 0 additions & 33 deletions lib/modules/datafile-manager/config.ts

This file was deleted.

37 changes: 0 additions & 37 deletions lib/modules/datafile-manager/http.ts

This file was deleted.

18 changes: 0 additions & 18 deletions lib/modules/datafile-manager/index.browser.ts

This file was deleted.

20 changes: 0 additions & 20 deletions lib/modules/datafile-manager/index.node.ts

This file was deleted.

Loading