pull/1676/head
bunsenstraat 3 years ago
parent ad1270d5b8
commit 5cf40ca442
  1. 1
      apps/remix-ide-e2e/src/local-plugin/src/app/app.tsx
  2. 4
      apps/remix-ide-e2e/src/tests/plugin_api.ts
  3. 527
      package-lock.json
  4. 14
      package.json

@ -2,7 +2,6 @@
import React, { useEffect, useState } from 'react'
import { RemixPlugin } from './Client'
import { Logger } from './logger'
import { filePanelProfile } from '@remixproject/plugin-api/lib/file-system/file-panel/profile'
import { filSystemProfile } from '@remixproject/plugin-api/lib/file-system/file-manager/profile'
import { dGitProfile } from '@remixproject/plugin-api/lib/dgit/profile'

@ -244,6 +244,10 @@ module.exports = {
await clickAndCheckLog(browser, 'filePanel:renameWorkspace', null, null, ['default_workspace', 'renamed'])
await clickAndCheckLog(browser, 'filePanel:getWorkspaces', ['emptyworkspace', 'testspace', 'newspace', 'renamed'], null, null)
},
'Should delete workspace': async function (browser: NightwatchBrowser) {
await clickAndCheckLog(browser, 'filePanel:deleteWorkspace', null, null, ['testspace'])
await clickAndCheckLog(browser, 'filePanel:getWorkspaces', ['emptyworkspace', 'newspace', 'renamed'], null, null)
},
// DGIT
'Should have changes on new workspace': async function (browser: NightwatchBrowser) {
await clickAndCheckLog(browser, 'filePanel:createWorkspace', null, null, 'dgit')

527
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -142,13 +142,13 @@
"@ethereumjs/tx": "^3.3.2",
"@ethereumjs/vm": "^5.5.3",
"@monaco-editor/react": "^4.3.1",
"@remixproject/engine": "next",
"@remixproject/engine-web": "next",
"@remixproject/plugin": "next",
"@remixproject/plugin-api": "next",
"@remixproject/plugin-utils": "next",
"@remixproject/plugin-webview": "next",
"@remixproject/plugin-ws": "next",
"@remixproject/engine": "^0.3.24",
"@remixproject/engine-web": "^0.3.24",
"@remixproject/plugin": "^0.3.24",
"@remixproject/plugin-api": "^0.3.24",
"@remixproject/plugin-utils": "^0.3.24",
"@remixproject/plugin-webview": "^0.3.24",
"@remixproject/plugin-ws": "^0.3.24",
"ansi-gray": "^0.1.1",
"async": "^2.6.2",
"axios": ">=0.21.1",

Loading…
Cancel
Save