@@ -9,7 +9,7 @@ describe('About', () => {
99 it ( 'deserializes correctly' , ( ) => {
1010 let deserializedAboutView = atom . deserializers . deserialize ( {
1111 deserializer : 'AboutView' ,
12- uri : 'atom ://about'
12+ uri : 'syntaxvoid ://about'
1313 } ) ;
1414
1515 expect ( deserializedAboutView ) . toBeTruthy ( ) ;
@@ -24,7 +24,7 @@ describe('About', () => {
2424 jasmine . attachToDOM ( workspaceElement ) ;
2525
2626 expect ( workspaceElement . querySelector ( '.about' ) ) . not . toExist ( ) ;
27- await atom . workspace . open ( 'atom ://about' ) ;
27+ await atom . workspace . open ( 'syntaxvoid ://about' ) ;
2828
2929 let aboutElement = workspaceElement . querySelector ( '.about' ) ;
3030 expect ( aboutElement ) . toBeVisible ( ) ;
@@ -33,7 +33,7 @@ describe('About', () => {
3333
3434 describe ( 'when the Pulsar version number is clicked' , ( ) => {
3535 it ( 'copies the version number to the clipboard' , async ( ) => {
36- await atom . workspace . open ( 'atom ://about' ) ;
36+ await atom . workspace . open ( 'syntaxvoid ://about' ) ;
3737 jasmine . attachToDOM ( workspaceElement ) ;
3838
3939 let aboutElement = workspaceElement . querySelector ( '.about' ) ;
@@ -45,7 +45,7 @@ describe('About', () => {
4545
4646 describe ( 'when the show more link is clicked' , ( ) => {
4747 it ( 'expands to show additional version numbers' , async ( ) => {
48- await atom . workspace . open ( 'atom ://about' ) ;
48+ await atom . workspace . open ( 'syntaxvoid ://about' ) ;
4949 jasmine . attachToDOM ( workspaceElement ) ;
5050
5151 let aboutElement = workspaceElement . querySelector ( '.about' ) ;
@@ -58,7 +58,7 @@ describe('About', () => {
5858
5959 describe ( 'when the Electron version number is clicked' , ( ) => {
6060 it ( 'copies the version number to the clipboard' , async ( ) => {
61- await atom . workspace . open ( 'atom ://about' ) ;
61+ await atom . workspace . open ( 'syntaxvoid ://about' ) ;
6262 jasmine . attachToDOM ( workspaceElement ) ;
6363
6464 let aboutElement = workspaceElement . querySelector ( '.about' ) ;
@@ -70,7 +70,7 @@ describe('About', () => {
7070
7171 describe ( 'when the Chrome version number is clicked' , ( ) => {
7272 it ( 'copies the version number to the clipboard' , async ( ) => {
73- await atom . workspace . open ( 'atom ://about' ) ;
73+ await atom . workspace . open ( 'syntaxvoid ://about' ) ;
7474 jasmine . attachToDOM ( workspaceElement ) ;
7575
7676 let aboutElement = workspaceElement . querySelector ( '.about' ) ;
@@ -82,7 +82,7 @@ describe('About', () => {
8282
8383 describe ( 'when the Node version number is clicked' , ( ) => {
8484 it ( 'copies the version number to the clipboard' , async ( ) => {
85- await atom . workspace . open ( 'atom ://about' ) ;
85+ await atom . workspace . open ( 'syntaxvoid ://about' ) ;
8686 jasmine . attachToDOM ( workspaceElement ) ;
8787
8888 let aboutElement = workspaceElement . querySelector ( '.about' ) ;
@@ -95,7 +95,7 @@ describe('About', () => {
9595 describe ( 'check for update appears' , ( ) => {
9696 it ( 'when "crab-updater" is enabled' , async ( ) => {
9797 atom . packages . activatePackage ( 'crab-updater' ) ;
98- await atom . workspace . open ( 'atom ://about' ) ;
98+ await atom . workspace . open ( 'syntaxvoid ://about' ) ;
9999 jasmine . attachToDOM ( workspaceElement ) ;
100100
101101 let aboutElement = workspaceElement . querySelector ( '.about' ) ;
0 commit comments