mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 02:15:12 +00:00
fix: quick test duration column verification
Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
@@ -17,11 +17,11 @@ let records = {
|
||||
Number: "1",
|
||||
Value: "$1.00",
|
||||
Percent: "0.01",
|
||||
Duration: "00:01",
|
||||
};
|
||||
|
||||
// links/ computed fields
|
||||
let records2 = {
|
||||
Duration: "00:01",
|
||||
Done: true,
|
||||
Date: "2022-05-31",
|
||||
Rating: "1",
|
||||
@@ -89,6 +89,11 @@ export const genTest = (apiType, dbType) => {
|
||||
|
||||
// date
|
||||
|
||||
// duration
|
||||
mainPage.getCell("Duration", 1).find('input').then(($e) => {
|
||||
expect($e[0].value).to.equal(records2.Duration)
|
||||
})
|
||||
|
||||
// rating
|
||||
mainPage
|
||||
.getCell("Rating", 1)
|
||||
|
||||
Reference in New Issue
Block a user