Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#RI-31 - Logical databases #223

Merged
merged 23 commits into from
Dec 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
6577d79
#RI-31 - Logical databases
egor-zalenski Dec 10, 2024
ca02933
#RI-31 - Logical databases
egor-zalenski Dec 10, 2024
3f481a8
#RI-31 - Logical databases
egor-zalenski Dec 10, 2024
2c91e15
#RI-31 - Logical databases
egor-zalenski Dec 10, 2024
d39a583
#RI-31 - Logical databases
egor-zalenski Dec 10, 2024
7c69e8d
#RI-31 - Logical databases
egor-zalenski Dec 10, 2024
cc61be2
#RI-31 - Logical databases
egor-zalenski Dec 10, 2024
2da5cdc
#RI-31 - fix pr comments
egor-zalenski Dec 10, 2024
1fddabf
#RI-31 - fix pr comments
egor-zalenski Dec 10, 2024
73460be
#RI-31 - fix pr comments
egor-zalenski Dec 10, 2024
5b2b3f3
#RIVS-299 - Add the changes from the main project
egor-zalenski Dec 12, 2024
9aea8d8
#RIVS-313 - Keys scanned value overlapped for small screen width
egor-zalenski Dec 12, 2024
ce5df8e
#RIVS-304 - Auto refresh
egor-zalenski Dec 13, 2024
de8c107
#RIVS-304 - Auto refresh
egor-zalenski Dec 13, 2024
14c5489
#RIVS-305 - Do not collapse the list of keys when going to another ex…
egor-zalenski Dec 13, 2024
3d6b7a2
#RIVS-305 - Turn on keytar encryption for new users
egor-zalenski Dec 13, 2024
9f8dd25
default
egor-zalenski Dec 13, 2024
f3e73a9
add html ui tests report
egor-zalenski Dec 13, 2024
1a1f928
fix builds
egor-zalenski Dec 13, 2024
b86d53f
Merge pull request #225 from RedisInsight/feature/bugfix
vlad-dargel Dec 16, 2024
31c9472
Merge pull request #226 from RedisInsight/feature/stories
vlad-dargel Dec 17, 2024
9330dea
Merge remote-tracking branch 'origin/feature/RIVS-31_Logical_database…
egor-zalenski Dec 17, 2024
0736188
Merge pull request #224 from RedisInsight/feature/RIVS-299_Add_featur…
vlad-dargel Dec 17, 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
#RI-31 - Logical databases
egor-zalenski committed Dec 10, 2024
commit cc61be2b68b5fa60aa31b39ef76e9d9db16bd150
20 changes: 5 additions & 15 deletions vite.config.mjs
Original file line number Diff line number Diff line change
@@ -103,21 +103,11 @@ export default defineConfig({
inline: ['rawproto', 'react-monaco-editor'],
},
},
reporters: [
'default',
[
'junit',
{
outputFile: './reports/junit.xml',
},
],
[
'html',
{
outputFile: './report/index.html',
},
],
],
reporters: ['default', 'junit', 'html'],
outputFile: {
junit: './reports/junit.xml',
html: './report/index.html',
},
},
})