-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2f3409
commit 9fd1eb7
Showing
9 changed files
with
122 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { describe, expect, test, vi } from 'vitest' | ||
|
||
describe.skip('download', () => { | ||
describe('run', () => { | ||
test('call cli2 command', () => { }) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { describe, expect, test, vi } from 'vitest' | ||
|
||
describe.skip('create', () => { | ||
test.fails('creates bucket and shows message', () => { }) | ||
test.fails('creates mulitple buckets and shows message', () => { }) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { describe, expect, test, vi } from 'vitest' | ||
|
||
describe.skip('delete', () => { | ||
describe('when forced', () => { | ||
test.fails('deletes files without confirmation', () => { }) | ||
}) | ||
describe('when asked for confirmation', () => { | ||
test.fails('deletes files after receiving confirmation', () => { }) | ||
test.fails('does not delete files after being denied confirmation', () => { }) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { describe, expect, test, vi } from 'vitest' | ||
|
||
describe.skip('init', () => { | ||
describe('init', () => { | ||
describe('when .gitignore exists', () => { | ||
test.fails('creates buckets and updates .gitignore', () => { }) | ||
}) | ||
describe('when .gitignore does not exist', () => { | ||
test.fails('creates buckets and creates .gitignore', () => { }) | ||
}) | ||
}) | ||
describe('renderBucketListSection', () => { | ||
describe('when array of buckets provided', () => { | ||
test.fails('returns a bucket list section', () => { }) | ||
}) | ||
describe('when no buckets provided', () => { | ||
test.fails('returns an empty selection list', () => { }) | ||
}) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { describe, expect, test, vi } from 'vitest' | ||
|
||
describe.skip('list', () => { | ||
test.fails('renders a table of buckets', () => { }) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import { describe, expect, test, vi } from 'vitest' | ||
|
||
describe.skip('deploy', () => { | ||
describe('deploy', () => { | ||
describe('when blue/green strategy', () => { | ||
test.fails('makes blue/green deploy', () => { }) | ||
}) | ||
describe('when no strategy is passsed', () => { | ||
test.fails('makes basic deploy', () => { }) | ||
}) | ||
}) | ||
|
||
describe('blueGreenDeploy', () => { | ||
test.fails('pulls live theme settings and updates on-deck theme', () => { }) | ||
}) | ||
|
||
describe('basicDeploy', () => { | ||
test.fails('pulls live theme settings and updates theme', () => { }) | ||
}) | ||
|
||
describe('getLiveTheme', () => { | ||
describe('when live theme exists', () => { | ||
test.fails('returns live theme id', () => { }) | ||
}) | ||
describe('when live theme does not exist', () => { | ||
test.fails('throws abort error', () => { }) | ||
}) | ||
}) | ||
|
||
describe('getOnDeckThemeId', () => { | ||
describe('when published theme is blue', () => { | ||
test('returns green', () => { }) | ||
}) | ||
describe('when published theme is green', () => { | ||
test('returns blue', () => { }) | ||
}) | ||
}) | ||
|
||
describe('gitHeadHash', () => { | ||
test('returns the first 8 chars', () => { }) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { describe, expect, test, vi } from 'vitest' | ||
|
||
describe.skip('get', () => { | ||
test.fails('returns theme', () => { }) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { describe, expect, test, vi } from 'vitest' | ||
|
||
describe.skip('theme utilities', () => { | ||
describe('pullThemeSettings', () => { | ||
test.fails('pulls settings from live theme', () => { }) | ||
}) | ||
describe('push', () => { | ||
test.fails('pushes theme files to theme', () => { }) | ||
}) | ||
describe('pushToLive', () => { | ||
test.fails('pushes theme files to live theme', () => { }) | ||
}) | ||
describe('getThemesByIdentifier', () => { | ||
test.fails('returns list of themes that match id or name', () => { }) | ||
}) | ||
describe('filterByTheme', () => { | ||
test.fails('returns list of themes that match filter', () => { }) | ||
}) | ||
describe('filterArray', () => { | ||
test.fails('returns list of themes that match predicate', () => { }) | ||
}) | ||
}) |