Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
cf9dec4
wave2-video base commit
Apr 21, 2026
1711764
image-to-video raw ui design
Apr 23, 2026
ece4aab
css fix
Apr 23, 2026
f1d6846
experimenting with icons
Apr 23, 2026
3a2fdb7
css for action container
Apr 23, 2026
3d12a7a
UI display 80% complete
Apr 24, 2026
d28b6b6
Implementing the BE wiring and furthe rcss fixes
Apr 24, 2026
8c0045f
Implementing cancel and error toast
Apr 24, 2026
4d88edc
remove comments
Apr 24, 2026
c92ee9f
code restructuring
Apr 24, 2026
d7c564c
Reverting changes in prompt-bar-style.css
Apr 24, 2026
83ead62
mobile css + functional fixes
Apr 25, 2026
7ccda01
clean up
Apr 25, 2026
3ee5fd5
pr comments
Apr 26, 2026
d1c4678
Wave 2.1 - Upscale video changes (#752)
arugupta1992 Apr 27, 2026
9d58fa4
handling stale image state
Apr 27, 2026
e918927
analytics for image to video
Apr 27, 2026
e22e099
pr commrnts
Apr 28, 2026
6eeb712
Adding support for text-to-speech in unity
Apr 28, 2026
f6f23d5
update 1
Apr 28, 2026
566872d
minor update
Apr 28, 2026
41c45d4
further updates
Apr 29, 2026
bc8b0d3
more changes
May 3, 2026
01d8ec2
Network call update
May 3, 2026
579d02d
updates
May 3, 2026
93b5e81
minor updates
May 3, 2026
77b687b
optimizations
May 3, 2026
d4794be
Add loading state support in audio files
May 4, 2026
9e3addd
minor updates
May 4, 2026
07525e3
fixing limit to 5000 for prompt-bar-audio
May 4, 2026
9faeb74
repopulate prompt with default after 10s if it is empty
May 4, 2026
428bb54
Adding support for mobile and tablet in UI
May 4, 2026
441f1a4
css updates
May 5, 2026
67e4b48
Adding glass UI in interactive area
May 5, 2026
6ba111f
Adding support for tile peeking if tiles more than then view port width
May 5, 2026
85a07bf
Merge stage into pb-audio
May 5, 2026
184c8b4
Merge branch 'stage' into pb-audio1
vipu0303 May 5, 2026
082f7cf
updating the model-picker file name to actual
May 5, 2026
5d874c5
review comments 1
May 6, 2026
9fa0c60
updates
May 6, 2026
2c65ff5
svg update
May 6, 2026
f757bd3
updates
May 6, 2026
d774bdf
Merge branch 'stage' into pb-audio1
vipu0303 May 7, 2026
d9a40a0
review comments
May 7, 2026
5503998
updating svgs
May 7, 2026
7d23105
update target config to include extended prompt-bar widgets lists
May 7, 2026
e7564a4
minor fix
May 7, 2026
cff7077
Merge branch 'stage' into pb-audio1
vipu0303 May 7, 2026
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
14 changes: 9 additions & 5 deletions test/core/workflow/workflow.firefly.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,13 @@ describe('Firefly Workflow Tests', () => {
unityElement = document.querySelector('.unity');
workflowCfg = {
name: 'workflow-firefly',
targetCfg: { renderWidget: true, insert: 'before', target: 'a:last-of-type' },
targetCfg: {
renderWidget: true,
insert: 'before',
target: 'a:last-of-type',
limits: { 'max-char-limit': 750 },
'limits-prompt-bar-audio': { 'max-char-limit': 5000 },
},
};
spriteContainer = '<svg></svg>';
block = document.querySelector('.unity-enabled');
Expand Down Expand Up @@ -2279,9 +2285,7 @@ describe('Firefly Workflow Tests', () => {
});

it('should pass empty object to logAnalytics when splunkData is omitted', async () => {
await testActionBinder.sendFireflyAnalytics(new CustomEvent('firefly-analytics', {
detail: { adobeEventName: 'Enter Prompt|UnityWidget' },
}));
await testActionBinder.sendFireflyAnalytics(new CustomEvent('firefly-analytics', { detail: { adobeEventName: 'Enter Prompt|UnityWidget' } }));
expect(logStub.calledOnceWithExactly('Enter Prompt|UnityWidget', {})).to.be.true;
});
});
Expand Down Expand Up @@ -2758,7 +2762,7 @@ describe('Firefly Workflow Tests', () => {
{ label: 'Var A', url: 'https://u1' },
{ label: 'Var B', url: 'https://u2' },
{ label: 'Var C', url: 'https://u3' },
{ label: 'Var D', url: 'https://u4' }
{ label: 'Var D', url: 'https://u4' },
]);
expect(pm.image).to.exist;
expect(pm.image[0].variations).to.deep.equal([]);
Expand Down
Loading
Loading